str字符串 encoding( ) 方法
阿新 • • 發佈:2018-08-28
默認 指定 python3 utf8 replace arr gis ict pan
描述
encode() 方法以指定的編碼格式編碼字符串。errors參數可以指定不同的錯誤處理方案。
語法
encode()方法語法:
str.encode(encoding=‘UTF-8‘,errors=‘strict‘)
參數
- encoding -- 要使用的編碼,如: UTF-8。
- errors -- 設置不同錯誤的處理方案。默認為 ‘strict‘,意為編碼錯誤引起一個UnicodeError。 其他可能得值有 ‘ignore‘, ‘replace‘, ‘xmlcharrefreplace‘, ‘backslashreplace‘ 以及通過 codecs.register_error() 註冊的任何值。
返回值
該方法返回編碼後的字符串,它是一個 bytes 對象。
實例
以下實例展示了encode()方法的實例:
#!/usr/bin/python3 str = "菜包python"; str_utf8 = str.encode("UTF-8") str_gbk = str.encode("GBK") print(str) print("UTF-8 編碼:", str_utf8) print("GBK 編碼:", str_gbk) print("UTF-8 解碼:", str_utf8.decode(‘UTF-8‘,‘strict‘)) print("GBK 解碼:", str_gbk.decode(‘GBK‘,‘strict‘))
以上實例輸出結果如下:
菜包python UTF-8 編碼: b‘\xe8\x8f\x9c\xe5\x8c\x85python‘ GBK 編碼: b‘\xb2\xcb\xb0\xfcpython‘ UTF-8 解碼: 菜包python GBK 解碼: 菜包python
str字符串 encoding( ) 方法