python之decode、encode及codecs模塊

編碼轉換時,通常需要以unicode作爲中間編碼,即先將其他編碼的字符串解碼(decode)成unicode,再從unicode編碼(encode)成另一種編碼。 1 2 str1.decode('gb2312')    # 將gb2312編碼的字符串轉換成unicode編碼 str2.encode('gb2312')    # 將unicode編碼的字符串轉換成gb2312編碼
相關文章
相關標籤/搜索