Flask Hello
[run]
from flask import Flask howdy = Flask(__name__) @howdy.route("/") def hello_world(): return "<p>Greetings, there, Earthlings!</p>"