except报错Statement expected, found Py:EXCEPT_KEYWORD
时间: 2024-02-07 12:02:23 浏览: 130
shell脚本报错:"[: =: unary operator expected"解决办法
5星 · 资源好评率100%
这个错误通常是因为您在使用Python代码时,使用了不正确的“except”语法。正确的语法是:
```
try:
# some code here
except Exception as e:
# handle the exception here
```
请注意“try”和“except”之间的冒号和缩进。如果您遵循了这个语法,但仍然遇到了这个错误,请检查您的代码,看看是否缺少或多余了某个关键字。
阅读全文