错误说
<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
答案 0 :(得分:0)
这是读取文件时的常见错误。使用python读取文件时,如果到达文件末尾,则必须使用以下命令返回第一行:file.seek(0)
,其中file
是文件变量的名称。