Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/blackberry/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在Python 3中解析时出现意外的EOF?_Python_Python 3.x - Fatal编程技术网

在Python 3中解析时出现意外的EOF?

在Python 3中解析时出现意外的EOF?,python,python-3.x,Python,Python 3.x,每次使用.format()运行此代码时,我都会遇到此错误 代码: list_A = [1,2,3,4] #Declaring List_A with items 1,2,3,4 list_B = [6,7,8,9] #Declaring List_B with items 5,6,7,8 print("list_A is: {} and list_B is: {}".format(list_A, list_B)) #Prints list_A and list_B print("length o

每次使用.format()运行此代码时,我都会遇到此错误

代码:

list_A = [1,2,3,4] #Declaring List_A with items 1,2,3,4
list_B = [6,7,8,9] #Declaring List_B with items 5,6,7,8
print("list_A is: {} and list_B is: {}".format(list_A, list_B)) #Prints list_A and list_B
print("length of list_A is: {0} and length of list_B is: {1}".format(len(list_A), len(list_B)) #Prints length of list_A with list_B
输出

File "<ipython-input-76-d54f829c5c52>", line 5
print("length of list_A is: {0} and length of list_B is: {1}".format(len(list_A), len(list_B)) #Prints length of list_A with len()
^
SyntaxError: unexpected EOF while parsing
文件“”,第5行
打印(“列表A的长度为:{0},列表B的长度为:{1}”)。格式(len(列表A),len(列表B))#使用len()打印列表A的长度
^
SyntaxError:分析时出现意外的EOF

您缺少一个结束语

print("length of list_A is: {0} and length of list_B is: {1}".format(len(list_A), len(list_B))) #Prints length of list_A with list_B

如果您的编辑器不能帮助您找到并避免这些问题,请考虑使用更强大的编辑器或IDE或安装Python插件以供您使用的任何一个插件。一旦您了解到这些错误通常来自于一行宝贵的代码中缺少的
]
}
,调试它们是很不错的,但是在您尝试运行代码之前,当您的编辑器向您尖叫时,就更容易了。谢谢您的帮助。我被困了三个小时。