n=int(input("请输入您猜的数字>>")) while True: if n < 10 and n >= 0: if n == s: print("恭喜您猜对了,答案为", s) break else: if n > s: n = int(input("猜大了,再猜>>")) else: n = int(input("猜小了,再猜>>")) else: n=int(input("错误:请输入0-9的整数,您...
print("预测了{}次,你猜中了,答案就是{}".format(N,M)) 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 若想预设数字为随机的,可以引用Python内置的标准库random来生成随机预设数字,修改如下: import random M=random.randint(0,100)#这里生成0~100之间的一个随机数为预设数字 N=0#记录猜数次数...