鱼C论坛's Archiver
论坛
›
新手乐园
› python3的一个小问题
yooooly
发表于 2019-10-17 10:11:17
python3的一个小问题
做学校题目时 出现EOFError未定义是啥情况呀
while True:
try:
list1 = list(map(int,input().split()))
i = list1
if i > 0:
print(sum(list1))
else:
break
except E0FError:
break
冬雪雪冬
发表于 2019-10-17 14:20:32
看了半天才发现字母O写成数字0了
zltzlt
发表于 2019-10-17 20:31:25
E0FError
应该为 EOFError。
页:
[1]
查看完整版本:
python3的一个小问题