Python中内置的ord()函数
例子:
Input:a Output:97
给定一个长度为1的字符串,当参数为unicode对象时,返回一个整数,该整数表示字符的Unicode代码点;如果参数为8位字符串,则返回字节的值。例如,ord('a')返回整数97,ord('€')(欧元符号)返回8364。这是8位字符串的chr()和Unicode对象的unichr()的逆。如果指定了unicode参数,并且Python是使用UCS2 Unicode构建的,则字符的代码点必须在[0..65535]范围内。
如果字符串长度大于一,则将引发TypeError。
语法可以是ord(“a”)或ord(‘a’),两者的结果相同。
# inbuilt function return an
# integer representing the Unicode code
value = ord("A")
# writing in ' ' gives the same result
value1 = ord('A')
# prints the unicode value
print value, value1
输出:
65 65
异常
1. TypeError:字符串长度大于1时引发。
# inbuilt function return an
# integer representing the Unicode code
# demonstrating exception
# Raises Exception
value1 = ord('AB')
# prints the unicode value
print (value1)
运行时错误:
Traceback (most recent call last): File "/home/f988dfe667cdc9a8e5658464c87ccd18.py", line 6, in value1 = ord('AB') TypeError:ord() expected a character, but string of length 2 found
相关用法
- Python map()用法及代码示例
- Python dir()用法及代码示例
- Python sum()用法及代码示例
- Python oct()用法及代码示例
- Python int()用法及代码示例
- Python id()用法及代码示例
- Python now()用法及代码示例
- Python tell()用法及代码示例
- Python cmp()用法及代码示例
- Python hex()用法及代码示例
- Python strftime()用法及代码示例
- Python fmod()用法及代码示例
注:本文由纯净天空筛选整理自Striver大神的英文原创作品 ord() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。