回答編集履歴

1

.

2022/05/17 04:30

投稿

int32_t
int32_t

スコア20882

test CHANGED
@@ -1,6 +1,6 @@
1
1
  `records` が配列なので、`records`に対してループしましょう。
2
2
  ```python
3
3
  for record in json_load["records"]:
4
- print(record["messageId")
4
+ print(record["messageId"])
5
5
  ```
6
6