Python3.7,EOFError:读取行时的EOF

Python 3.7, EOFError: EOF when reading a line(Python3.7,EOFError:读取行时的EOF)
本文介绍了Python3.7,EOFError:读取行时的EOF的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法运行我的代码,我正在使用atom.iopython 3.7。以下是我的代码:
num1 = input("enter a number: ")
num2 = input("enter another number: ")
result = int(num1) + int(num2)
print(result)

它总是这样说:

enter a number: Traceback (most recent call last):
  File "C:UsersicebergnesDesktopCODECalculator Basic.py", line 2, in <module>
    num1 = input("enter a number: ")
EOFError: EOF when reading a line

推荐答案

当输入()或RAW_INPUT()等内置函数在遇到其输入流结尾之前未读取任何数据时,将引发EOFError。

尝试使用Try,看看它是否有效。

try:
   #your code

except EOFError as e:
   print(e)

这篇关于Python3.7,EOFError:读取行时的EOF的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)