请帮我看下这段代码为什么出错?
import randomguess = random.randint(1,10)
temp = input('猜猜我心里想什么数字?')
time = 2 # 还剩几次机会
while not temp.isdigit:
temp = input('输错了,重新输入整数')
temp = int(temp)
while temp != guess and (time > 0):
temp = int(temp)
time -= 1
temp = input('猜错了,再猜')
while not temp.isdigit:
temp = input('输错了,重新输入整数')
if temp == guess:
print('太聪明啦')
print('猜对也没有奖励')
else:
print('答案是',guess)
print('game over!')
当我输入一个非数字的变量,如x时,不显示'输错了,重新输入整数'而是程序直接报错
isdigit要加括号
temp.isdigit()
这样才行
页:
[1]