D:\Python310\python.exe G:/Python学习/自写脚本/2.绩效表/JXJKB.py File "G:\Python学习\自写脚本\2.绩效表\JXJKB.py", line 33 formula = ori_sheet.cell(r, c).value ^ IndentationError: expected an indented block after 'if' statement on line 32
时间: 2023-12-14 08:38:30 浏览: 55
python tab 自动补全
这个错误提示是缩进错误,Python中使用缩进来表示代码块,你需要检查一下代码中if语句后面是否有缩进,如下所示:
```python
if condition:
# 这里需要缩进
statement1
statement2
# 这里是if语句之外的代码,不需要缩进
```
请检查一下你的代码,并确保在if语句后面有正确的缩进。
阅读全文