我如何修复cmd上预期的缩进块

时间:2018-01-04 01:53:29

标签: python block

我正在尝试在CMD下运行hello.py,但是当我运行烧瓶时,我在下面收到此错误,我该如何解决?

enter image description here

1 个答案:

答案 0 :(得分:0)

您只需缩进return 'Hello World!'文件中的hello.py行。

from flask import *
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, World!'

至少应该允许它编译