回答編集履歴
1
リンクの追加
answer
CHANGED
@@ -3,4 +3,6 @@
|
|
3
3
|
```Python
|
4
4
|
print(ord('A')) # 65
|
5
5
|
print(ord('X') - 64) # 24
|
6
|
-
```
|
6
|
+
```
|
7
|
+
|
8
|
+
[組み込み関数 ord() | 公式ドキュメント](https://docs.python.org/ja/3/library/functions.html#ord)
|