python脚本猜年龄

Posted

tags:

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

需求描述:

     允许用户猜三次,如果没有猜对,提示用户是否继续,输入Y或y继续,输入N或n退出程序,如果猜对直接退出程序。

技术分享
 1 count=0
 2 age=25
 3 while count < 3:
 4     input_age=int(input("猜猜看我的年纪: "))
 5     if input_age > age:
 6         print("too big ")
 7         count+=1
 8     elif input_age < age:
 9         print("too small ")
10         count+=1
11     else:
12         print("Yes! My age is:",age)
13         break
14 
15     if count == 3:
16         agent=input("错误次数已达三次!是否继续?Y/N y/n:  ")
17         if agent == y or agent ==Y:
18             count=0
19             continue
20         elif agent == N or agent == n:
21             break
View Code

 

以上是关于python脚本猜年龄的主要内容,如果未能解决你的问题,请参考以下文章

Python猜年龄

python_猜年龄,有三次机会

Python 猜年龄的游戏

python猜年龄

Python—猜年龄游戏升级版

python循环之猜年龄游戏