Curso_Intensivo_de_PYTHON/chapter_10/greet_user.py
2023-06-02 17:22:53 +02:00

7 lines
135 B
Python

import json
filename = 'username.json'
with open(filename) as f:
username = json.load(f)
print(f"Welcome back, {username}!")