txt=open("Automatic.txt").read()ls=txt.split()print(ls)new=open("abc.txt","w+").write(",".join(ls))a=open("abc.txt","r").read()n=a.split(",")print(n)#就是这一步开始出问题了txt.close()new.close()a.close()最后一步无法关闭文件,报错说是AttributeError: 'str' object has no attribute 'close',卡在这好久了,调试半天一点办法都没有(笑哭)
1 回答
- 1 回答
- 0 关注
- 348 浏览
添加回答
举报
0/150
提交
取消