ascii()返回一个字符串对象。
ascii()的参数只能有一个。
如果参数中有非ascii字符,会用 \u,\U,\x 来替代。
ascii()和Python2中repr()等效
下面看看例子:
>>> ascii('hello') "'hello'" >>> ascii(123) '123' >>> ascii([1,2]) '[1, 2]' >>> ascii('中国') "'\\u4e2d\\u56fd'"
Powered by: 博客园 Copyright © 2025 开飞机的贝塔 Powered by .NET 9.0 on Kubernetes