docs: 2026-04-21作业

This commit is contained in:
2026-04-27 22:12:44 +08:00
parent b0db5b3239
commit dd21ddbaef
7 changed files with 139 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from flask import *
app = Flask(__name__)
@app.route("/")
@app.route("/index/")
def index():
info = [1, 2, 3, 4, 5]
return render_template("2026-04-21_hw_1.html", info=info)
if __name__ == "__main__":
app.run()