概述
chr(i)
中文说明:
返回整数i对应的ASCII字符。与ord()作用相反。
参数x:取值范围[0, 255]之间的正数。
版本:该函数在python2和python3各个版本中都可用。不存在兼容性问题。
英文说明:
Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string 'a'. This is the inverse of ord(). The argument must be in the range [0..255], inclusive; ValueError will be raised if i is outside that range. See also unichr().
代码实例:>>> chr(97)
"a"
>>> chr(98)
"b"
>>> ord("a")
97
>>> ord("b")
98
ps:呵呵,这个函数和php里面的用法是一样的哦
最后
以上就是单身故事为你收集整理的python中chr函数的用法_chr(i)的全部内容,希望文章能够帮你解决python中chr函数的用法_chr(i)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复