python hello world web application

Solutions on MaxInterview for python hello world web application by the best coders in the world

showing results for - "python hello world web application"
Jonah
26 Oct 2019
1from flask import Flask
2
3app = Flask(__name__)
4
5@app.route('/')
6def index():
7	return 'Hello World!'
8
9if __name__ == "__main__":
10	app.run(host='0.0.0.0', debug=True)