Guest User

Untitled

a guest
Mar 22nd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. from flask import Flask
  2. import random
  3.  
  4. app = Flask(__name__)
  5.  
  6. @app.route('/')
  7. def home():
  8. x = random.randint(0,100)
  9. return 'X = {}'.format(x)
  10.  
  11. app.run(debug=True)
Add Comment
Please, Sign In to add comment