ptyhon猜数字小游戏

Posted 745728806-qq

tags:

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

import random
n = random.randint(20,30)
count = 0
age_l = ‘‘‘
-------
age : %i
-------
‘‘‘ %(n)
while count < 3:
count += 1
user = int(input("请输入:"))
if user > n:
print("big")
elif user < n:
print("small")
else:
print("yes")
break
if count == 3:
user_l = input("是否继续y/n:")
if user_l == "n" or user_l == "N":
break
elif user_l == "y" or user_l == "Y":
count = 0
print(age_l)

以上是关于ptyhon猜数字小游戏的主要内容,如果未能解决你的问题,请参考以下文章

C语言 猜数字游戏代码

Leetcode-299 猜数字游戏

猜数字游戏程序设计

用C#编写猜数字游戏,

c语言猜数字游戏源代码

java猜数字游戏代码