python 用while 猜年龄
Posted mouni-11498
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 用while 猜年龄相关的知识,希望对你有一定的参考价值。
age = 50 while True: user_input_age = int(input("age is: ")) if user_input_age == age: print(" Yes! ") break #终止 elif user_input_age > age: print("age is smaller, try input batter!") else: print("age is batter, try input smaller!") print("End!")
以上是关于python 用while 猜年龄的主要内容,如果未能解决你的问题,请参考以下文章