5 lines
112 B
Python
5 lines
112 B
Python
import json
|
|
with open("A1_res.json", "r") as file:
|
|
content=json.load(file)
|
|
for lst in content:
|
|
print(lst[0]) |