回答編集履歴

1

テキスト修正

2020/09/21 19:32

投稿

jun68ykt
jun68ykt

スコア9058

test CHANGED
@@ -6,9 +6,9 @@
6
6
 
7
7
  ```python3
8
8
 
9
- dic = { key: value for key, value in dic.items()
9
+ dic = {key: value for key, value in dic.items()
10
10
 
11
- if key in ['countriesAndTerritories', 'deaths', 'dateRep'] }
11
+ if key in {'countriesAndTerritories', 'deaths', 'dateRep'}}
12
12
 
13
13
  ```
14
14