ascii ( object )
As repr() , return a string containing a printable representation of an object, but escape the non-ASCII characters in the string returned by repr() using \x , \u or \U escapes. This generates a string similar to that returned by repr() in Python 2.
说明:
1. 返回一个可打印的对象字符串方式表示,如果是非ascii字符就会 输出\x,\u或\U等字符来表示。与python2版本里的repr()是等效的函数。
>>> ascii(1)
'1'
>>> ascii('&')
"'&'"
>>> ascii(9000000)
'9000000'
>>> ascii('中文') #非ascii字符
"'\\u4e2d\\u6587'" 以上就是Python内置ascii函数详细介绍的详细内容,更多请关注Gxl网其它相关文章!
查看更多关于Python内置ascii函数详细介绍的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did85472