10 lines
223 B
Python

from pathlib import Path
import json
number = input("What's your favorite number? ")
path = Path('favorite_number.json')
contents = json.dumps(number)
path.write_text(contents)
print("Thanks! I'll remember that number.")