8 lines
121 B
Python
8 lines
121 B
Python
import json
|
|
|
|
filename = 'numbers.json'
|
|
with open(filename, 'r') as f_obj:
|
|
numbers = json.load(f_obj)
|
|
|
|
print(numbers)
|