求知 文章 文库 Lib 视频 iPerson 课程 认证 咨询 工具 讲座 Modeler   Code  
会员   
要资料
 
追随技术信仰

随时听讲座
每天看新闻
 
 
Python 教程
1.Python 简介
2.Python 入门
3.Python 语法
4.Python 注释
5.Python 变量
6.Python 数据类型
7.Python 数字
8.Python Casting
9.Python 字符串
10.Python 布尔
11.Python 运算符
12.Python 列表
13.Python 元组
14.Python 集合
15.Python 字典
16.Python If ... Else
17.Python While 循环
18.Python For 循环
19.Python 函数
20.Python 数组
21.Python Lambda
22.Python Lambda
23.Python 继承
24.Python 迭代
25.Python 作用域
26.Python 模块
27.Python 日期
28.Python JSON
29.Python RegEx
30.Python PIP
31.Python Try Except
32.Python 命令行输入
33.Python 字符串格式化
34.Python 文件处理
35.Python 文件打开
36.Python 文件写入
37.Python 删除文件
 

 
目录
Python 字符串 encode() 方法
19 次浏览
2次  

实例

对字符串进行 UTF-8 编码:

txt = "My name is Ståle"

x = txt.encode()

print(x)

定义和用法

encode() 方法使用指定的编码对字符串进行编码。如果未指定编码,则将使用 UTF-8。

语法

string.encode(encoding=encoding, errors=errors)

参数值

参数 描述
encoding 可选。字符串。规定要使用的编码。默认是 UTF-8。
errors

可选。字符串。规定错误方法。合法值是:

  • 'backslashreplace' - 使用反斜杠代替无法编码的字符
  • 'ignore' - 忽略无法编码的字符
  • 'namereplace' - 用解释字符的文本替换字符
  • 'strict' - 默认值,失败时引发错误
  • 'replace' - 用问号替换字符
  • 'xmlcharrefreplace' - 用 xml 字符替换字符

更多实例

实例

这些示例使用 ascii 编码和无法编码的字符,展示带有不同错误的结果:

txt = "My name is Ståle"

print(txt.encode(encoding="ascii",errors="backslashreplace"))
print(txt.encode(encoding="ascii",errors="ignore"))
print(txt.encode(encoding="ascii",errors="namereplace"))
print(txt.encode(encoding="ascii",errors="replace"))
print(txt.encode(encoding="ascii",errors="xmlcharrefreplace"))
print(txt.encode(encoding="ascii",errors="strict"))

您可以捐助,支持我们的公益事业。

1元 10元 50元





认证码: 验证码,看不清楚?请点击刷新验证码 必填



19 次浏览
2次