IndentationError: expected an indented block ^ sum=0 Line 3 (Solution.py)
时间: 2023-07-06 07:10:02 浏览: 152
17个新手常见Python运行时错误.docx
这个错误提示是因为在 Python 中,代码块必须使用缩进来表示,而你的代码缺少了缩进。如果你想定义一个代码块,那么需要在代码块的开头加上缩进(通常是四个空格),例如:
```python
if x > 0:
print("x is positive")
```
所以,正确的代码应该是:
```python
for i in range(10):
sum = sum + i
```
这样就可以避免这个 IndentationError 错误了。
阅读全文