《零基础入门学习Python》005课-课后练习
改进猜数字游戏里,讲到如果一开始不输入整数会报错,用type 或 isinstance 函数来改进,请问我这个函数为什么会在第一个while里一直循环下去。。。:import random
times =3
secret = random.randint(1,10)
guess = 0
print('我们来玩个游戏吧')
temp = input('请输入我心里想的一个数字:')
while type(temp) != type(1):
print('抱歉,输入不合法,', end='')
temp = input('请输入一个整数:')
while (guess != secret) and (times > 0):
guess = int(temp)
times= times - 1
if guess == secret:
print('哇,被你猜中了!')
print('但是猜中了也没有奖励~')
else:
if guess > secret:
print('大了大了')
if times == 2:
print('还有2次机会',end='')
temp = input('请输入一个整数')
else:
if times == 1:
print('还有1次机会',end='')
temp = input('请输入一个整数:')
else:
print('没机会啦')
else:
print('小了小了')
if times == 2:
print('还有2次机会',end='')
temp = input('请输入一个整数')
else:
if times == 1:
print('还有1次机会',end='')
temp = input('请输入一个整数')
else:
print('没机会啦')
print('游戏结束')
第七行判断type(temp) != type(1):
temp是字符串类型,1是整型,他们永远不同,这样就进入了死循环
修改代码,我们判断temp是否都是由数字组成,如果不是的话,进入循环
附修改后源码
import random
times =3
secret = random.randint(1,10)
guess = 0
print('我们来玩个游戏吧')
temp = input('请输入我心里想的一个数字:')
while not temp.isdigit():
print('抱歉,输入不合法,', end='')
temp = input('请输入一个整数:')
while (guess != secret) and (times > 0):
guess = int(temp)
times= times - 1
if guess == secret:
print('哇,被你猜中了!')
print('但是猜中了也没有奖励~')
else:
if guess > secret:
print('大了大了')
if times == 2:
print('还有2次机会,',end='')
temp = input('请输入一个整数:')
else:
if times == 1:
print('还有1次机会,',end='')
temp = input('请输入一个整数:')
else:
print('没机会啦!')
else:
print('小了小了')
if times == 2:
print('还有2次机会,',end='')
temp = input('请输入一个整数:')
else:
if times == 1:
print('还有1次机会,',end='')
temp = input('请输入一个整数:')
else:
print('没机会啦!')
print('游戏结束')
temp = input('请输入一个整数:')
while type(temp) != type(1): // 应该是 判断 输入的是否是 数字吧
print('抱歉,输入不合法,', end='')
temp = input('请输入一个整数:')// input 默认输入的是 str 类型的 所以 才会一直在while里
temp = int(input('请输入一个整数:'))
还可以再加上 判断是否是再0-9之间的if 判断 输入合法性判断,正如前面鱼油回答,input返回的是一个字符串,所以会进入死循环,
程序还有一个问题,我觉得if 语句还可以改,
if times >= 2:
print('还有%d次机会'%(times),end='')
temp = input('请输入一个整数')
这样当我们改变次数times 的时候,程序运行才合理。
import random
times =10
secret = random.randint(1,10)
guess = 0
print('我们来玩个游戏吧')
temp =int(input('请输入我心里想的一个数字:'))
while type(temp) != type(1):
print('抱歉,输入不合法,', end='')
temp = input('请输入一个整数:')
while (guess != secret) and (times > 0):
guess = int(temp)
times= times - 1
if guess == secret:
print('哇,被你猜中了!')
print('但是猜中了也没有奖励~')
break
else:
if guess > secret:
print('大了大了')
if times >= 2:
print('还有%d次机会'%(times),end='')
temp = input('请输入一个整数')
else:
if times == 1:
print('还有1次机会',end='')
temp = input('请输入一个整数:')
else:
print('没机会啦')
else:
print('小了小了')
if times >= 2:
print('还有%d次机会'%(times),end='')
temp = input('请输入一个整数')
else:
if times == 1:
print('还有1次机会',end='')
temp = input('请输入一个整数')
else:
print('没机会啦')
print('游戏结束') yangminer 发表于 2020-11-30 14:33
输入合法性判断,正如前面鱼油回答,input返回的是一个字符串,所以会进入死循环,
程序还有一个问题,我 ...
请问('还有%d次机会'%(times)里的%d是什么意思呀 LuLD 发表于 2020-11-30 08:45
temp = input('请输入一个整数:')
while type(temp) != type(1): // 应该是 判断 输入的是否 ...
哦哦哦,明白了!谢谢大佬~ Python萌新小杨 发表于 2020-11-30 19:53
请问('还有%d次机会'%(times)里的%d是什么意思呀
是print函数的格式化输出,运行你就会有体会。还可以百度了解得详细些。比如:https://www.cnblogs.com/hokky/p/8434236.html
https://my.oschina.net/liurihui/blog/3073746
页:
[1]