Keine Beschreibung

greet_user.py 148B

12345678
  1. import json
  2. filename = 'username.json'
  3. with open(filename) as f_obj:
  4. username = json.load(f_obj)
  5. print("Welcome back, " + username + "!")