1. 程式人生 > >python中open函式在遇到中文路徑的解決方法

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