用PythonCharm编写一个猜年龄的小游戏!!!(10分钟)

Posted python之恋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PythonCharm编写一个猜年龄的小游戏!!!(10分钟)相关的知识,希望对你有一定的参考价值。

import random #把random模块调用出来
age = random.randint(10,25)#用rand.randint制造一个随机数表
count = 0
while count < 3:#共有三次机会
    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分钟)的主要内容,如果未能解决你的问题,请参考以下文章

2018.9.13猜年龄小游戏升级版

用C#编写猜数字游戏,

猜年龄游戏,输入数字,直到猜对为止

2018.9.13猜年龄小游戏

猜年龄小游戏

猜年龄游戏