Python小游戏—每次运行程序,答案是随记,如何实现?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python小游戏—每次运行程序,答案是随记,如何实现?相关的知识,希望对你有一定的参考价值。

1.需要引入random模块,引用函数randint(),这个函数返回一个随记的整数

2.用and逻辑运算符比较

代码如下:

import random
secret = random.randint(1,10)
count = 1
temp = input("猜数字:")
guess = int(temp)
while guess != secret and count < 3:
if guess > secret:
print("too big")
else:
print("too small")
temp = input("try again:")
guess = int(temp)
count +=1
if guess ==secret:
print("对了")
print("game over")
print("游戏结束")
















以上是关于Python小游戏—每次运行程序,答案是随记,如何实现?的主要内容,如果未能解决你的问题,请参考以下文章

python 随记

如何在python中运行另一个程序的python中模拟按键事件

安卓测试---随记

ArcMap操作随记

ArcMap操作随记

C# Window编程随记——ClickOnce程序部署