if 1+1 == 2: # 这个 if和下面的 else对应 if 2*2 == 8: print('if') else: # 因为1+1 == 2为真,所以这个 else永远不会被执行 print('else')
[此贴子已经被作者于2019-7-29 10:31编辑过]