9 lines
178 B
Python
9 lines
178 B
Python
user_0 = {
|
|
'username': 'efermi',
|
|
'first': 'enrico',
|
|
'last': 'fermi',
|
|
}
|
|
|
|
for key, value in user_0.items():
|
|
print(f"\nKey: {key}")
|
|
print(f"Value: {value}")
|