Python decode()方法
Python decode()方法
Python decode() 方法以 encoding 指定的編碼格式解碼字符串。默認(rèn)編碼為字符串編碼。
語(yǔ)法
decode()方法語(yǔ)法:
str.decode(encoding='UTF-8',errors='strict')
參數(shù)
- encoding -- 要使用的編碼,如"UTF-8"。
- errors -- 設(shè)置不同錯(cuò)誤的處理方案。默認(rèn)為 'strict',意為編碼錯(cuò)誤引起一個(gè)UnicodeError。 其他可能得值有 'ignore', 'replace', 'xmlcharrefreplace', 'backslashreplace' 以及通過(guò) codecs.register_error() 注冊(cè)的任何值。
返回值
該方法返回解碼后的字符串。
實(shí)例
以下實(shí)例展示了decode()方法的實(shí)例:
#!/usr/bin/python str = "this is string example....wow/b64/"; str = str.encode('base64','strict'); print "Encoded String: " + str; print "Decoded String: " + str.decode('base64','strict')
以上實(shí)例輸出結(jié)果如下:
Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE= Decoded String: this is string example....wow/b64/
相關(guān)文章
- Python Deque
- Python 哈希表
- Python 樹遍歷算法
- Python 圖算法
- Python 大O符號(hào)
- Python 攤銷分析
- Python3 數(shù)據(jù)類型
- Python3 解釋器
- Python3 元組(Tuple)
- Python floor() 函數(shù)
- Python File next() 方法
- Python os.chdir() 方法
- Python os.chmod() 方法
- Python os.dup2() 方法
- Python os.isatty() 方法
- Python os.popen() 方法
- Python os.renames() 方法
- Python os.ttyname() 方法
- Python List extend()方法
- Python 字典 Dictionary pop() 方法