這篇文章主要介紹了簡單介紹Python中的decode()方法的使用,是Python入門學習當中必須掌握的基礎知識,需要的朋友可以參考下
decode()方法使用注冊編碼的編解碼器的字符串進行解碼。它默認為默認的字符串編碼。
語法
以下是decode()方法的語法:
?
1 str.decode(encoding='UTF-8',errors='strict')參數
encoding -- 這是所使用的編碼。對於所有的編碼方案的列表,請訪問:標准編碼庫
errors -- 這可能是給定一個不同的錯誤處理機制。默認的錯誤是“嚴格”,即編碼錯誤提出UnicodeError。其他可能的值是ignore', 'replace', 'xmlcharrefreplace', 'backslashreplace' 並通過codecs.register_error().注冊的任何其他名稱。
返回值
此方法返回的字符串的解碼版本。
例子
下面的例子顯示了decode()方法的使用。
?
1 2 3 4 5 6 7 #!/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')當我們運行上面的程序,它會產生以下結果:
?
1 2 3 Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE= Decoded String: this is string example....wow!!!