1. 程式人生 > >Python編碼處理和文件路徑處理

Python編碼處理和文件路徑處理

https win get pre encode com html .cn color

#變量編碼格式化
a=我是中文
print(u%s%a)
------------------ 結果:
我是中文 引用網址
#變量編碼格式化
a=我是中文
print(a.encode(utf-8))

------------------

結果:b‘\xe6\x88\x91\xe6\x98\xaf\xe4\xb8\xad\xe6\x96\x87‘
引用網址

文件路徑處理

a=input(請輸入路徑).replace(\\,/).replace(\",‘‘)#把Windows下的\換成/可以解決路徑問題,還有雙引號可以去掉
b=open(a)#然後再打開文件就不會出錯了
print(b.read())

Python編碼處理和文件路徑處理