Python ascii() 函数
定义和用法
The ascii()
函数返回任何对象(字符串、元组、列表等)的可读版本。
The ascii()
函数将用转义字符替换任何非 ASCII 字符
å
将被替换为 \xe5
。
语法
ascii(object)
参数值
参数 | 描述 |
---|---|
object | 一个对象,比如字符串、列表、元组、字典等。 |
The ascii()
函数返回任何对象(字符串、元组、列表等)的可读版本。
The ascii()
函数将用转义字符替换任何非 ASCII 字符
å
将被替换为 \xe5
。
ascii(object)
参数 | 描述 |
---|---|
object | 一个对象,比如字符串、列表、元组、字典等。 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]