猜年龄游戏
Posted 200六
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了猜年龄游戏相关的知识,希望对你有一定的参考价值。
age=22 counter=0 for i in range(10): if counter<3: guess_num=int(input("请猜年龄")) if guess_num==age: print("恭喜你猜对了") break elif guess_num >age: print("太大了") else: print("太小了") else: continue_isntit=input("你猜了太多次了真笨是否继续?输入:q 继续") if continue_isntit=="q": counter=0 continue else: break counter += 1
以上是关于猜年龄游戏的主要内容,如果未能解决你的问题,请参考以下文章