标签:style blog color ar sp on 2014 log bs
这个函数跟repr()函数一样,返回一个可打印的对象字符串方式表示。当遇到非ASCII码时,就会输出\x,\u或\U等字符来表示。与Python 2版本里的repr()是等效的函数。
例子:
#ascii()函数 print(ascii(10), ascii(9000000), ascii(‘b\31‘), ascii(‘0x\1000‘))
输出结果如下:
10 9000000 ‘b\x19‘ ‘0x@0‘
蔡军生 QQ:9073204 深圳
标签:style blog color ar sp on 2014 log bs
原文地址:http://blog.csdn.net/caimouse/article/details/40739131