黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python decode()方法

Python decode()方法

Python 字符串Python 字符串

Python decode() 方法以 encoding 指定的編碼格式解碼字符串。默認編碼為字符串編碼。

 

語法

decode()方法語法:

str.decode(encoding='UTF-8',errors='strict')

 

參數(shù)

  • encoding -- 要使用的編碼,如"UTF-8"。
  • errors -- 設置不同錯誤的處理方案。默認為 'strict',意為編碼錯誤引起一個UnicodeError。 其他可能得值有 'ignore', 'replace', 'xmlcharrefreplace', 'backslashreplace' 以及通過 codecs.register_error() 注冊的任何值。

 

返回值

該方法返回解碼后的字符串。

 

實例

以下實例展示了decode()方法的實例:

#!/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')

以上實例輸出結果如下:

Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE=

Decoded String: this is string example....wow/b64/

Python 字符串Python 字符串

下一節(jié):Python encode()方法

Python 教程

相關文章