Files
myPythonWebHomework/2026-04-28/2026-04-28_hw_2.py
2026-05-11 23:07:40 +08:00

14 lines
202 B
Python

from flask import *
app = Flask(__name__)
@app.route('/')
@app.route('/static-file')
def load_staticfile():
return render_template('hw_t2.html')
if __name__ == "__main__":
app.run(port=80)