IndentationError: expected an indented block

Python使用for循环遍历列表

代码: 

fruits=['apple','pear','grape','mango','lemon']
for fruit in fruits :
print(fruit)

错误:

IndentationError: expected an indented block #期望一个缩进的块

原因:

  在c语言和Java中都是用花括号{ }来区分一个块的,而在python中是用缩进来识别语法逻辑块,类似的有if、while等

纠正:

 

fruits=['apple','pear','grape','mango','lemon']
for fruit in fruits :
    print(fruit)

 

在sublime中使用Tab即可快速缩进

 

 

 

上一篇:git commit提交时报错husky > pre-commit (node v10.16.0) Stashing changes... [started] Stashing changes.


下一篇:五、postman公共函数及newman运行与生成测试报告