用PythonCharm编写一个猜年龄的小游戏!!!(10分钟)
2021-03-23 13:26
标签:href random模块 port nbsp 编写 arm int com pytho 用PythonCharm编写一个猜年龄的小游戏!!!(10分钟) 标签:href random模块 port nbsp 编写 arm int com pytho 原文地址:https://www.cnblogs.com/pythonzhilian/p/13839560.htmlimport random #把random模块调用出来
age = random.randint(10,25)#用rand.randint制造一个随机数表
count = 0
while count #共有三次机会
n = int(input(‘Guess the age:‘))#输入用户通过键盘敲打的数据
if n > age:
print(‘Try smaller,你还有%s次机会‘%(2-count))
count += 1
elif n age:
print(‘Try bigger,你还有%s次机会‘%(2 - count))
count += 1
else:
print(‘Yes,you get it‘)
break#结束循环
print(age)
本文首发于python黑洞网,博客园同步更新
文章标题:用PythonCharm编写一个猜年龄的小游戏!!!(10分钟)
文章链接:http://soscw.com/index.php/essay/67830.html