设计一个猜数字游戏

def cz():
import random
for i in range(10):
a =int(input("请输入要猜的数字"))
i =random.randint(0,100)
if a>i:
print("太大了,猜小点,再接再励!")
elif a<i:
print ("太小了,猜大点,再接再励!")
else:
print("恭喜你,猜对了!!!")
cz()
原文地址:https://www.cnblogs.com/biaobiaohu/p/14245167.html