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 猜年龄的主要内容,如果未能解决你的问题,请参考以下文章

用while循环写猜年龄以及优化版

使用python进行简单的猜数字游戏(while循环)

while循环猜年龄随意玩代码

用Python写猜年龄游戏

python猜年龄

python循环之猜年龄游戏