Python内置ascii函数详细介绍
程序员文章站
2022-05-14 11:22:39
...
英文文档:
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函数详细介绍的详细内容,更多请关注其它相关文章!
推荐阅读
-
python模块介绍- binascii:二进制和ASCII互转 以及其他进制转换
-
Python内置函数locals和globals对比
-
PHP文件锁函数flock()详细介绍
-
Python字符串内置函数使用
-
python中string模块各属性以及函数的用法介绍
-
Python中字符串String的基本内置函数与过滤字符模块函数的基本用法
-
Python编程之Re模块下的函数介绍
-
Python常见内置高效率函数用法示例
-
Python入门及进阶笔记 Python 内置函数小结
-
Python有用的内置函数divmod,id,sorted,enumerate,input,oct,eval,exec,isinstance,ord,chr,filter,vars,zip