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