expected an indented block意为:期待一个缩进块 错误原因: 缩进不规范,少些或多些了一个空格(python一定要注意缩进规范) i = 0 while i < 10: print(i) i = i + 1