9 lines
155 B
Python
9 lines
155 B
Python
from pathlib import Path
|
|
import json
|
|
|
|
|
|
numbers = [2, 3, 5, 7, 11, 13]
|
|
|
|
path = Path('numbers.json')
|
|
contents = json.dumps(numbers)
|
|
path.write_text(contents) |