python 猜字谜游戏(随机数)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 猜字谜游戏(随机数)相关的知识,希望对你有一定的参考价值。
python 猜字谜游戏(随机数)
import random
times = 3
secret = random.randint(1,10)
guess = 0
print('-----------我爱吃鱼----------')
temp = input("不妨猜一下我的心里的数字:")
guess = int(temp)
while (guess != secret)and (times > 0):
temp = input("猜错啦,请重新输入:")
guess = int(temp)
while not temp.isdigit():
temp = input("抱歉,请输入完整的整数:")
uess = int(temp)
times = times - 1 #每输入错误一次机会就会减一
if guess == secret:
print("我晕, 你是如何知道的?!")
print("猜中了也没有什么奖励!")
else:
if guess > secret:
print("大了呀!")
else:
print("小了,小了呀")
if times > 0:
print("再来试一下:",end=" ")
else:
print("机会用光了 ~~")
print("游戏结束,不玩啦~~")
以上是关于python 猜字谜游戏(随机数)的主要内容,如果未能解决你的问题,请参考以下文章
华为OD机试真题Python实现猜字谜真题+解题思路+代码(2022&2023)
华为OD机试真题 Python 实现猜字谜2022.11 Q4 新题