File size: 204 Bytes
b657fcc | 1 2 3 4 5 6 7 8 9 10 | import json
def save_to_file(filename, data):
with open(filename, "w") as f:
json.dump(data, f)
def load_from_file(filename):
with open(filename, "r") as f:
return json.load(f)
|