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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。