Python 基礎(chǔ)教程
Python decode() 方法以 encoding 指定的編碼格式解碼字符串。默認(rèn)編碼為字符串編碼。
decode()方法語法:
str.decode(encoding='UTF-8',errors='strict')
encoding -- 要使用的編碼,如"UTF-8"。
errors -- 設(shè)置不同錯誤的處理方案。默認(rèn)為 'strict',意為編碼錯誤引起一個UnicodeError。 其他可能得值有 'ignore', 'replace', 'xmlcharrefreplace', 'backslashreplace' 以及通過 codecs.register_error() 注冊的任何值。
該方法返回解碼后的字符串。
以下實(shí)例展示了decode()方法的實(shí)例:
以上實(shí)例輸出結(jié)果如下:
Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE= Decoded String: this is string example....wow!!!