本文主要是介绍Python chr ord,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
python chr()和ord()
版权声明:本文为博主原创文章,未经博主允许不得转载。
通过help 查看相关函数的帮助文档
>>>help (chr)
chr(...)
chr(i) -> character
Return a string of one character with ordinal i; 0 <= i < 256.
参数是0 - 256 的一个整数,返回值是当前整数对应的ascii字符。参数可以是10进制也可以是16进制的形式
十六进制:
- >>> print chr(0x30), chr(0x31), chr(0x61)
- 0 1 a
- >>> print chr(48), chr(49), chr(97)
- 0 1 a
unichr(...)
unichr(i) -> Unicode character
Return a Unicode string of one character with ordinal i; 0 <= i <= 0x10ffff.
unichr()和chr()函数功能基本一样, 只不过是返回unicode的字符
ord(...)
ord(c) -> integer
Return the integer ordinal of a one-character string.
参数是一个ascii字符,返回值是对应的十进制整数
- >>> print <b style="color:#000;background:#66ffff">ord</b>('a'), <b style="color:#000;background:#66ffff">ord</b>('0'), <b style="color:#000;background:#66ffff">ord</b>('1')
- 97 48 49
- >>> print "%x %x %x" % (<b style="color:#000;background:#66ffff">ord</b>('a'), <b style="color:#000;background:#66ffff">ord</b>('0'), <b style="color:#000;background:#66ffff">ord</b>('1'))
- 61 30 31
- >>> print "%#x %#x %#x" % (<b style="color:#000;background:#66ffff">ord</b>('a'), <b style="color:#000;background:#66ffff">ord</b>('0'), <b style="color:#000;background:#66ffff">ord</b>('1'))
- 0x61 0x30 0x31
通过chr()和 ord()联合起来使用,我们就可以对字符串进行相关运算的转换
比如一个字符串str1,转化成另一个字符串str2, 使得 str2[i] = str1[i] - i
- str1 = "eb;3ej8h"
- >>> for i in range(0, len(str1)):
- ... print chr((<b style="color:#000;background:#66ffff">ord</b>(str1[i])-i)),
- ...
- e a 9 0 a e 2 a
这篇关于Python chr ord的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!