python 中的encode()
函数有助于将给定的字符串转换为编码格式。如果未指定编码,默认情况下将使用 UTF-8。
创新互联从2013年成立,是专业互联网技术服务公司,拥有项目成都做网站、网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元唐山做网站,已为上家服务,为唐山各地企业和个人服务,联系电话:028-86922220
**string.encode(encoding='UTF-8',errors='strict')** #where encodings being utf-8, ascii, etc
encode()
函数接受两个可选参数。这里的参数错误有六种类型。
参数 | 描述 | 必需/可选 |
---|---|---|
编码 | 字符串必须编码到的编码类型 | 可选择的 |
错误 | 编码失败时的响应 | 可选择的 |
默认情况下,函数使用 utf-8 编码,如果出现任何故障,它会引发一个 UnicodeDecodeError 异常。
| 投入 | 返回值 | | 线 | 编码字符串 |
encode()
方法的示例 # unicode string
string = 'pythön!'
# print string
print('The original string is:', string)
# default encoding to utf-8
string_utf8 = string.encode()
# print result
print('The encoded string is:', string_utf8)
输出:
The original string is: pythön!
The encoded string is: b'pyth\xc3\xb6n!'
# unicode string
string = 'pythön!'
# print string
print('The original string is:', string)
# ignore error
print('The encoded string (with ignore) is:', string.encode("ascii", "ignore"))
# replace error
print('The encoded string (with replace) is:', string.encode("ascii", "replace"))
输出:
The original string is: pythön!
The encoded string (with ignore) is: b'pythn!'
The encoded string (with replace) is: b'pyth?n!'
网站名称:创新互联Python教程:Python encode()
链接URL:http://www.stwzsj.com/qtweb/news18/6518.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联