Curso_Intensivo_de_PYTHON/chapter_06/user.py

10 lines
178 B
Python
Raw Permalink Normal View History

2023-06-02 17:22:53 +02:00
user_0 = {
'username': 'efermi',
'first': 'enrico',
'last': 'fermi',
}
for key, value in user_0.items():
print(f"\nKey: {key}")
print(f"Value: {value}")