ElinaElizabeth 发表于 2020-6-22 18:02:24

请帮我看下这段代码为什么出错?

import random

guess = 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时,不显示'输错了,重新输入整数'而是程序直接报错

qiuyouzhi 发表于 2020-6-22 18:04:31

isdigit要加括号
temp.isdigit()
这样才行
页: [1]
查看完整版本: 请帮我看下这段代码为什么出错?