while循环猜年龄随意玩代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了while循环猜年龄随意玩代码相关的知识,希望对你有一定的参考价值。

# Author:liuzhongchang
LIU_age = 27
count=0
while count<3:
    guess_age = int(input("guess age:"))
    if guess_age==LIU_age:
     print("yes,you got it.")
     break
    elif guess_age>LIU_age:
     print("think smaller...")
    else:
     print("think bigger...")
    count+=1
    if count==3:
        countine_=input("do you want to keep guessing...?")
        if countine_!=n:
            count=0

 

以上是关于while循环猜年龄随意玩代码的主要内容,如果未能解决你的问题,请参考以下文章

while循环猜年龄

While循环猜年龄

猜年龄---while循环

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

while/for循环+if猜年龄

python之判断年龄是否正确