在Python中使用decode函數的方法
decode:decode()函數的作用是指定的編碼格式解碼字符串。
decode()函數語法:
str.decode(encoding='UTF-8',errors='strict')
參數:
encoding:表示需要指定的編碼。
errors:設置不同錯誤的處理方案。
decode()函數使用方法:
str = "hello world";
str = str.encode('base64','strict');
print "Encoded String: " + str;
print "Decoded String: " + str.decode('base64','strict')
輸出結果為:
Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE=
Decoded String: hello world