from flask import Flask app = Flask(__name__) @app.route('/') def hello(): return 'Hello, World!' 五行代码就可以做出一个小型服务器。 它在python的web框架中属于小 ...
確定! 回上一頁