条件判断:(if elif then)
age = int(input("请输入您的年龄:")) if age > 18: print('大于18岁') elif age == 18: print('equal 18') else: print('you are too small')