摘要: from flask import Flask app = Flask(__name__) @app.route('/flask') def hello_flask(): return 'Hello Flask' @app.route('/python/') def hello_python(): 阅读全文
posted @ 2021-07-09 13:35 小毛编 阅读(55) 评论(0) 推荐(0) 编辑