這篇文章主要介紹了Python中encode()方法的使用簡介,是Python入門中的基礎(chǔ)知識,需要的朋友可以參考下
encode() 方法返回字符串的編碼版本,
Python中encode()方法的使用簡介
。默認(rèn)編碼是當(dāng)前的默認(rèn)字符串編碼?山o予設(shè)置不同的錯誤處理機(jī)制。語法
以下是encode()方法的語法:
str.encode(encoding=‘UTF-8‘,errors=‘strict‘)
參數(shù)
encoding -- 這是所使用的編碼。對于所有的編碼方案的列表,請訪問:標(biāo)準(zhǔn)編碼庫
errors -- 這可能是給定一個不同的錯誤處理機(jī)制。默認(rèn)的錯誤是“嚴(yán)格”,即編碼錯誤提出UnicodeError,
電腦資料
《Python中encode()方法的使用簡介》(http://www.ishadingyu.com)。其他可能的值是ignore‘, ‘replace‘, ‘xmlcharrefreplace‘, ‘backslashreplace‘ 并通過codecs.register_error().注冊的任何其他名稱。返回值
此方法返回的字符串的編碼版本。
例子
下面的例子顯示了encode()方法的使用。
#!/usr/bin/pythonstr = "this is string example....wow!!!";print "Encoded String: " + str.encode(‘base64‘,‘strict‘)
當(dāng)我們運(yùn)行上面的程序,它會產(chǎn)生以下結(jié)果:
Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE=