python 3 EOFError:读取行时出现EOF

时间:2019-01-25 00:48:24

标签: python-3.x

错误说

 <error statusCode="404" subStatusCode="-1" prefixLanguageFilePath="" path="404.aspx" responseMode="Redirect" />

我尝试删除int并从上面复制粘贴同一行,这不会出错odoStart并将其更改为odoEnd,但是不起作用? 不确定Traceback (most recent call last): File "rental_car-customer-data-2.py", line 18, in odoEnd = int(input("Ending Odometer Reading:")) EOFError: EOF when reading a line 是否也可以工作?

odoEnd - odoStart

1 个答案:

答案 0 :(得分:0)

这是读取文件时的常见错误。使用python读取文件时,如果到达文件末尾,则必须使用以下命令返回第一行:file.seek(0),其中file是文件变量的名称。