ages = 20 ticketPrice = 20 if ages >= 16 else 10 count = 8 print( count if count % 10 == 0 else "不能被10整除")
成立条件时执行的语句 if 条件 else 不成立时执行的语句
2020-06-19