Learn, Code, Improve & Repeat.
Learning to code is not difficult with williambenz.comarrow-up-right
All you need is just some spare time. Click below to get started!
rocket-launchGet started
from flask import Flask, render_template, request app = Flask(__name__) @app.route("/", methods=['GET']) def index(): return render_template("index.html") if __name__ == "__main__": app.run(host="127.0.0.1", port=80, debug=True)
Last updated 2 months ago