python Flask演示:你好世界
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Flask演示:你好世界相关的知识,希望对你有一定的参考价值。
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/', methods=['GET'])
def index():
return render_template('index.html')
@app.route("/hello")
def hello():
return "Welcome to Python Flask App!"
if __name__ == "__main__":
app.run()
以上是关于python Flask演示:你好世界的主要内容,如果未能解决你的问题,请参考以下文章
Vue前后端页面下载功能实现演示,Python+flask提供后台下载服务
Vue前后端页面下载功能实现演示,Python+flask提供后台下载服务
python打印“你好世界”与“你好世界”
Vue前后台数据交互实例演示,使用axios传递json字符串数组
“你好世界!” DevExpress QuantumGrid 的例子?
python 搭建的第一个web环境