Guest User

Untitled

a guest
Feb 11th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import json
  2.  
  3.  
  4. def fav_num():
  5. file_name = 'favorite_number.json'
  6. try:
  7. with open(file_name) as f:
  8. fav = json.load(f)
  9. except FileNotFoundError:
  10. fav = input("Whats you num?")
  11. with open(file_name, 'w') as f:
  12. json.dump(fav, f)
  13. print("We'll remember your num")
  14. else:
  15. print("Yay,we remembered it: ", fav)
  16.  
  17.  
  18. fav_num()
Add Comment
Please, Sign In to add comment