3.5 案例:我要买票吗
案例:
根据年龄判断是都需要买票
print("欢迎来到游乐园,请说出你的年龄")
age = int(input("输入你的年龄:"))
if age >= 18:
print("你已经成年,需要买票")
else:
print("你未成年,不用买票")
print("游玩愉快")Last updated
Was this helpful?
根据年龄判断是都需要买票
print("欢迎来到游乐园,请说出你的年龄")
age = int(input("输入你的年龄:"))
if age >= 18:
print("你已经成年,需要买票")
else:
print("你未成年,不用买票")
print("游玩愉快")Last updated
Was this helpful?
Was this helpful?