Activity 3

Presentation

Video Presentation

Starter Code

import random
from flask import Flask
app = Flask(__name__)

@app.route("/")
def index():
    # add new code below
    
    return "welcome to activity 3!"

Last updated

Was this helpful?