本文主要是介绍python函数chr(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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().
代码实例:
1 2 3 4 5 6 7 8 | >>> chr ( 97 ) 'a' >>> chr ( 98 ) 'b' >>> ord ( 'a' ) 97 >>> ord ( 'b' ) 98 |
这篇关于python函数chr()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!