import random num = random.randint(0,100) count = 0 while True: guess = int(input("")) count += 1 if guess > num: print("Too big") elif guess < num: print("Too small") else: print("Lucky You!") break if count > 7: print("Game Over!") break
时间: 2024-04-28 19:27:06 浏览: 83
python中random.randint和random.randrange的区别详解
5星 · 资源好评率100%
这是一个猜数字游戏的Python代码。程序随机生成一个0到100之间的数字,然后用户通过输入猜测的数字来猜测答案。如果猜测的数字比答案大,程序会打印出“太大了”,如果猜测的数字比答案小,程序会打印出“太小了”,如果猜测的数字与答案相等,程序会打印出“幸运!”。如果用户猜测7次后仍未猜中,程序会打印出“游戏结束!”并退出循环。
阅读全文