Python F&Q

发布时间: 更新时间: 总字数:88 阅读时间:1m 作者: 分享 复制网址

Python F&Q 汇总

常见错误

python-if-else-SyntaxError:invalid syntax 问题

if elif and else must immediately follow the end of the if block, or Python will assume that the block has closed without them.

if 1:
    pass
           <--- this line must be indented at the same level as the `pass`
else:
    pass

In your code, the interpreter finishes the if block when the indentation, so the elif and the else aren’t associated with it. They are thus being understood as standalone statements, which doesn’t make sense.

Home Archives Categories Tags Statistics
本文总阅读量 次 本站总访问量 次 本站总访客数