转义非 ASCII 字符:
x = ascii("中国")print(x)
x = ascii("中国")
print(x)
ascii() 函数返回任何对象(字符串,元组,列表等)的可读版本。
ascii()
ascii() 函数会将所有非 ascii 字符替换为转义字符:
å 将替换为 \xe5。
ascii(object)