import json
# read json file
with open('data/person.json') as f:
data = json.load(f)
print(data)
# output
{'name': 'Anwar', 'languages': ['English', 'Arabic']}
# Flatten a list of lists
data = [
[1, 2 ], [3, 5], [8, 10]]
result = []
for x in data:
for y in x:
result.append(y)
print(result)
# output
[1, 2, 3, 5, 8, 10]