Activity 2

Presentation

Video Presentation

Flask Starter Code

from flask import Flask
app = Flask(__name__)

@app.route("/")
def index():
    return "hello world!"

Last updated

Was this helpful?