如果在分号后使用if语句失败

时间:2019-03-31 22:50:53

标签: python if-statement semicolon-inference

我不明白为什么在分号(用作语句分隔符)后使用单行if语句时为什么在Python中出现错误。

没关系:

if True: print("it works")
#### it works

但这会带来语法错误:

a=1; if True: print("it should work?")
#### SyntaxError: invalid syntax

我在Spyder中使用Python3。

谢谢您的解释!

1 个答案:

答案 0 :(得分:1)

分号只能用于连接“小语句”,其中不包含if语句。来自https://docs.python.org/3/reference/grammar.html

stmt: simple_stmt | compound_stmt
simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE
small_stmt: (expr_stmt | del_stmt | pass_stmt | flow_stmt |
             import_stmt | global_stmt | nonlocal_stmt | assert_stmt)

[...]
compound_stmt: if_stmt | [...]