質問編集履歴
1
新しいリンクを追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,8 +6,13 @@
|
|
6
6
|
### 発生している問題
|
7
7
|
|
8
8
|
ループさせて複数回削除すると毎回同じ順序で削除される。
|
9
|
-
[Python Documentation](https://docs.python.jp/3/library/stdtypes.html#dict.popitem)では`任意の (key, value) 対を辞書から消去して返します。`とあります。
|
9
|
+
~~[Python Documentation 3.6.5]~~[旧リンク](https://docs.python.jp/3/library/stdtypes.html#dict.popitem)では`任意の (key, value) 対を辞書から消去して返します。`とあります。
|
10
|
+
↓
|
11
|
+
ブラウザのお気に入りから古いドキュメントのリンクを見ていました。大変失礼しました。
|
12
|
+
↓ New!!
|
13
|
+
[Python Documentation 3.7.0](https://docs.python.org/ja/3.7/library/stdtypes.html#dict.popitem)
|
10
14
|
|
15
|
+
|
11
16
|
### 該当のソースコード
|
12
17
|
|
13
18
|
```Python3
|