码迷,mamicode.com
首页 > 编程语言 > 详细

Python标准库:内置函数ascii(object)

时间:2014-11-03 13:05:59      阅读:141      评论:0      收藏:0      [点我收藏+]

标签: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  深圳

Python标准库:内置函数ascii(object)

标签:style   blog   color   ar   sp   on   2014   log   bs   

原文地址:http://blog.csdn.net/caimouse/article/details/40739131

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!