Python 术语表
if 语句不能为空,但如果你由于某种原因写了一个没有内容的 if 语句,请插入 pass 语句以避免出现错误。
if
pass
a = 33 b = 200 if b > a: pass
亲自试一试