2024年10月27日 星期日

[Python] 傳回 ASCII 的 chr() 函數 vs 傳回字元的 Unicode 碼值 ord() 函數

.[Python] 傳回 ASCII 的 chr() 函數 vs 傳回字元的 Unicode 碼值 ord() 函數

(1) 傳回 ASCII 的 chr() 函數:
>>> x1 = 65
>>> x2 = 66
>>> print(chr(x1))  // 或是 print(chr(65))
A
>>> print(chr(x2))  // 或是 print(chr(66))
B
>>>

---
>>> y1 = 97
>>> y2 = 98
>>> print(chr(y1))  // 或是 print(chr(97))
a
>>> print(chr(y2))  // 或是 print(chr(98))
b

.
(2) 傳回字元的 Unicode 碼值 ord() 函數:
>>> ch11 = 'A'
>>> ch12 = 'B'
>>> print(ord(ch11))  // 或是 print(ord( 'A'))
65
>>> print(ord(ch12))  // 或是 print(ord( 'B'))
66
>>>

---
>>> ch21 = 'a'
>>> ch22 = 'b'
>>> print(ord(ch21))  // 或是 print(ord( 'a'))
97
>>> print(ord(ch22))  // 或是 print(ord( 'b'))
98


沒有留言:

張貼留言