代码中的Python EOF错误

时间:2018-07-25 06:31:22

标签: python eof

numArr = [x for x in input().split()]

for num in numArr:

    if num == '+' or num >= 'a' and num <= 'z':

      print("invalid")

    elif int(num) >= 0 and int(num) <= 1000:     

      num_1 = str(num)

      count = 0

      for i in num_1:

        if i == '3':

        count += 1

    if int(num) % 3 == 0 and count > 0:

      print("dumb")

    elif count > 0:

      print("stupid")

    elif int(num) % 3 == 0:

      print("idiot")

    elif int(num) % 3 != 0 and count == 0:

      print("smart")

    else:

      print("invalid")

上面的代码可以吗?我在使用的其他编辑器中出现EOF错误。但是这段代码是在Codechef IDE中执行的。可能是什么问题?

1 个答案:

答案 0 :(得分:0)

您的代码没有任何问题,但是您的编辑器必须能够将输入从控制台重定向到python脚本;否则python脚本将从对input()的调用中获取EOF。