wei/unit-10/greet_user.py

8 lines
129 B
Python

import json
filename = "username.json"
with open(filename) as f_obj:
username = json.load(f_obj)
print(username + "!")