python 用while 猜年龄
时间:2018-06-19 11:33:33
收藏:0
阅读:217
age = 50 while True: user_input_age = int(input("age is: ")) if user_input_age == age: print(" Yes! \n") break #终止 elif user_input_age > age: print("age is smaller, try input batter!") else: print("age is batter, try input smaller!") print("End!")
原文:https://www.cnblogs.com/mouni-11498/p/9197544.html
评论(0)