python中open函数在遇到中文路径的解决方法

#encoding=utf-8
inpath = 'D:/学习/python/python/python就业培训视频/333/cc.txt'
fr=open(inpath ,"r")
f=fr.read()
print f

fr.close()

会出现下面的这种异常:

IOError: [Errno 2] No such file or directory: 'D:/\xe5\xad\xa6\xe4\xb9\xa0/python/python/\xe6\x99\xba\xe6\x99\xae\xe6\x95\x99\xe8\x82\xb2python\xe5\xb0\xb1\xe4\xb8\x9a\xe5\x9f\xb9\xe8\xae\xad\xe8\xa7\x86\xe9\xa2\x91\xe6\x95\x99\xe7\xa8\x8b\xef\xbc\x88195\xe9\x9b\x86\xe5\x85\xa8\xef\xbc\x89/161-180/cc.txt'


文件的路径出现了解析错误的情况,所以在传入文件路径的时候先把文件的编码格式转了

#encoding=utf-8
inpath = 'D:/学习/python/python/python就业培训视频/333/cc.txt'
uipath = unicode(inpath , "utf8")
fr=open(uipath,"r")
f=fr.read()
print f
fr.close()

这个是我的这个文件的输出:

1
2
3
4
5
6
7
8
9

你可能感兴趣的:(python中open函数在遇到中文路径的解决方法)