nRnYqfrb5pJuTP5YAohj

Flask | Hello world

Dec 12th, 2021
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. from flask import Flask
  2.  
  3. app = Flask(__name__)
  4.  
  5. @app.route("/")
  6. def hello_world():
  7.     return "<p>Hello, World!</p>"
Advertisement
Add Comment
Please, Sign In to add comment