ord()函數(shù)返回一個(gè)表示Unicode字符的整數(shù)。
ord()的語(yǔ)法為:
ord(ch)
ord()函數(shù)采用單個(gè)參數(shù):
ch -Unicode字符
ord()函數(shù)返回一個(gè)表示Unicode字符的整數(shù)。
print(ord('5')) # 53 print(ord('A')) # 65 print(ord('$')) # 36
輸出結(jié)果
53 65 36
順便說(shuō)一句,ord()函數(shù)與Python chr()函數(shù)的作用相反