5 lines
101 B
Python
5 lines
101 B
Python
import json
|
|
|
|
if __name__ == '__main__':
|
|
with open('cars.json') as f:
|
|
cars = json.load(f)
|