app = Flask(name)#创建Flask对象,确定项目根目录
Flask是flask中的一个类
@app.route('/') #是根路由
def hello_world(): # 视图函数,view function return 'Hello World!'