Python decode()方法
decode()方法使用注冊編碼的編解碼器的字符串進行解碼。它默認為默認的字符串編碼。
語法
以下是decode()方法的語法:
str.decode(encoding='UTF-8',errors='strict')
參數
-
encoding -- 這是所使用的編碼。對於所有的編碼方案的列表,請訪問:標準編碼庫
-
errors -- 這可能是給定一個不同的錯誤處理機製。默認的錯誤是“嚴格”,即編碼錯誤提出UnicodeError。其他可能的值是ignore', 'replace', 'xmlcharrefreplace', 'backslashreplace' 並通過codecs.register_error().注冊的任何其他名稱。
返回值
此方法返回的字符串的解碼版本。
例子
下麵的例子顯示了decode()方法的使用。
#!/usr/bin/python str = "this is string example....wow!!!"; str = str.encode('base64','strict'); print "Encoded String: " + str; print "Decoded String: " + str.decode('base64','strict')
當我們運行上麵的程序,它會產生以下結果:
Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE= Decoded String: this is string example....wow!!!