1
1
Fork 0
PythonLearning/cars/main.py
Seaswimmer df27844a36
Some checks failed
Lint Code / Ruff (push) Successful in 7s
Lint Code / MyPy (push) Failing after 10s
Lint Code / Pylint (push) Failing after 10s
load the json file
2024-06-06 20:18:01 -04:00

5 lines
101 B
Python

import json
if __name__ == '__main__':
with open('cars.json') as f:
cars = json.load(f)