8 lines
140 B
Python
8 lines
140 B
Python
from pathlib import Path
|
|
import json
|
|
|
|
path = Path('numbers.json')
|
|
contents = path.read_text()
|
|
numbers = json.loads(contents)
|
|
|
|
print(numbers) |