**
Python学习笔记—— SyntaxError: unexpected EOF while parsing
**
博主只是一个初学python的菜鸟
跟着b站视频:
https://www.bilibili.com/video/BV1wD4y1o7AS?p=139
在学习将列表转换为字符串时出现问题:
SyntaxError: unexpected EOF while parsing
通过Debug 查到 我在进行字符串转字典时,遍历的变量没有内容存在
通过百度看到了一些关于字符串转变的内容。
后来发现是在通过open函数将外界文件输入程序过程的函数出现了错误,导致最终 遍历失败。
源程序一部分:
①
with open(filename,“r”,encoding=“utf-8”) as file:
student_old=file.readline()
(filename是我简化定义的文件名)
②
for item in student_old: #遍历列表
d=dict(eval(item)) ; #将字符串转换为字典
print(d);
改进的地方就只有readline—>readlines
不过具体什么原因就不得而知了(太菜了T_T)