質問編集履歴

1

プログラムの間違い

2019/11/13 08:55

投稿

firstbn
firstbn

スコア11

test CHANGED
File without changes
test CHANGED
@@ -2,11 +2,9 @@
2
2
 
3
3
  x = []
4
4
 
5
- for i in 50:
5
+ for i in range(50):
6
6
 
7
- x.append({a:i, b:i+1, c:i+2})
7
+ x.append({'a':i, 'b':i+1, 'c':i+2})
8
-
9
-
10
8
 
11
9
  ```
12
10