/Python-Speed-Course

Examples Python

Primary LanguagePython

Full Speed Python

1- read json file

import json
# read json file
with open('data/person.json') as f:
    data = json.load(f)

print(data)
# output 
{'name': 'Anwar', 'languages': ['English', 'Arabic']}

2- Flatten a list of lists

# 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]

link video