a = 21 # 正确 b = 30 # 错误
a = 21 # 正确 b = 30 # 错误 if a > 20: print('大于') # 正确 print('大于') # 错误 else: print('小于') # 正确