7 lines
128 B
Python
7 lines
128 B
Python
import json
|
|
|
|
numbers = [2, 3, 5, 7, 11, 13]
|
|
|
|
filename = 'numbers.json'
|
|
with open(filename, 'w') as f:
|
|
json.dump(numbers, f)
|