1. 程式人生 > >python str轉unicode和unicode轉str

python str轉unicode和unicode轉str

str轉Unicode:

strtypeE.decode('gbk')

unicode轉str:

unicodetypeE.encode('gbk')

有時程式會報這樣的錯誤:

Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal

那麼就說明是你要對比的兩個元素的型別不同,可以同過type()檢視元素型別,轉換成相同型別後即可。