from flask import Flask app = Flask(__name__) @app.route('/') def hello_world(): return "Hello Flask" @app.route('/index') def index(): ...
確定! 回上一頁