8 lines
129 B
Python
8 lines
129 B
Python
import json
|
|
|
|
filename = "username.json"
|
|
|
|
with open(filename) as f_obj:
|
|
username = json.load(f_obj)
|
|
print(username + "!")
|