ord関数


ord関数は、引数で与えた文字のASCIIコードを返します。

>>> ord('0')
48
>>> ord('A')
65
>>>

 

関連する関数
  chr

 

 

 

ホーム