Curso_Intensivo_de_PYTHON/chapter_10/number_reader.py

8 lines
112 B
Python
Raw Normal View History

2023-06-02 17:22:53 +02:00
import json
filename = 'numbers.json'
with open(filename) as f:
numbers = json.load(f)
print(numbers)