組み込み関数 ord() 使い方 int = ord( str ) 文字を与えるとUnicodeが戻ります複数の文字を与えるとエラーになります int1 = ord('a') print(int1) #結果 97 chr()... 組み込み関数