<languages />
❮内置功能
转义非ASCII字符:
x = ascii("My name is Ståle")
The ascii() 函数返回任何对象(字符串,元组,列表等)的可读版本。
ascii()
The ascii() 函数将用转义字符替换所有非ascii字符:
å 将被替换为 \xe5 .
å
\xe5
ascii(object)