我在Ubuntu系统上学习python。我试图读取文件时有错误。
fw = open(outfile,"a")
outfile = 'sougou/Reduced/C000008_pre.txt'
IOError: [Errno 2] No such file or directory: 'sougou/Reduced/C000008_pre.txt'
答案 0 :(得分:2)
如果没有任何其他信息,我可以在这里看到两种可能性。
您尝试访问的文件不存在。
相对于您调用Python脚本的位置,文件的路径不正确。
尝试提供文件的绝对路径,看看是否可以解决您的问题:
outfile = '/some/path/here/sougou/Reduced/C000008_pre.txt'
答案 1 :(得分:0)
sougou/Reduced/C000008_pre.txt
不存在sougou
目录fw.close()
或使用with open(outfile,"a") as fw:
更好