ascii 函数将一个对象作为输入,并以可打印格式返回该对象。该函数查找对象中的任何非 ascii 字符,并用相应的转义字符替换该字符。
**ascii(object)** #where object can be a string, list, tuple etc
ascii()
参数:ascii()
函数只有一个强制参数。它以字符串、元组、列表字典等对象为参数。
参数 | 描述 | 必需/可选 |
---|---|---|
目标 | 任何对象,如字符串、列表、字典等。 | 需要 |
ascii()
返回值如果对象中存在非 ascii 字符,它将被转换为可打印格式。
ascii()
方法的示例obj = "I löve lèarning Pythön" print(obj)
print(ascii(obj))
输出:
I löve lèarning Pythön
'I lxf6ve lxe8arning Pythxf6n'
obj = "I love learning Python" print(obj)
print(ascii(obj))
输出:
I love learning Python
'I love learning Python'
tup_obj = ('L3arn', 'Lèarn', 3) print(ascii(tup_obj))
输出:
('L3arn', 'Lxe8arn', 3)