大家好,欢迎来到IT知识分享网。
string.encode()方法
string.encode()方法返回给定字符串的编码形式,
从Python 3.0开始,字符串以Unicode格式存储,即字符串中的每个字符都由一个代码点表示。 因此,每个字符串只是Unicode代码点的序列。
为了有效地存储这些字符串,将代码点的顺序转换为字节集, 该过程称为编码。
存在各种不同的编码,它们对字符串的处理不同。 流行的编码是utf-8,ascii等。
使用string.encode()方法,我们可以将未编码的字符串转换为Python支持的任何编码。 默认情况下,Python使用utf-8编码。
encode()方法的语法为:
string.encode(encoding='UTF-8',errors='strict')
string.encode()参数
默认情况下,encode()方法不需要任何参数。
string.encode(),它返回字符串的utf-8编码形式。如果编码失败,将引发UnicodeDecodeError异常。
它有两个参数:
- encoding-字符串必须是可编码的类型.
- errors-编码失败时的响应。错误响应有以下六种类型:
- strict-默认响应,失败时会引发UnicodeDecodeError异常
- ignore-从结果中忽略无法编码的unicode
- replace-将无法编码的Unicode替换为问号?
- xmlcharrefreplace-插入XML字符引用而不是无法编码的unicode
- backslashreplace-插入\ uNNNN转义序列,而不是无法编码的unicode
- namereplace-插入\ N {…}转义序列,而不是无法编码的unicode
下面,我们直接来用代码实例演示如下:
示例1:编码为默认的Utf-8编码
string = 'pythön!' print('The string is:', string) string_utf = string.encode() print('The encoded version is:', string_utf)
输出:
The string is: pythön! The encoded version is: b'pyth\xc3\xb6n!'
示例2:使用errors参数编码:
string = 'pythön!' print('The string is:', string) print('The encoded version (with ignore) is:', string.encode("ascii", "ignore")) print('The encoded version (with replace) is:', string.encode("ascii", "replace"))
输出:
The string is: pythön! The encoded version (with ignore) is: b'pythn!' The encoded version (with replace) is: b'pyth?n!'
这只是我们演示的一部分,我们还可以尝试上面其他encoding 和 error的参数。
大家可以用实例自己动手操作一下。
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/160244.html