0

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

还行吧:

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

但这会产生语法错误:

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

我使用 Python3 和 Spyder。

感谢您的任何解释!

4

1 回答 1

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 | [...]
于 2019-03-31T22:56:47.710 回答