-1
I’m having a question regarding a dictionary in a dictionary, I have a code that has multiple users on a website,each with a unique name and age, where the names of users and ages are used in keys in a dictionary. how do I access the nome
, sobrenome
and idade
through a bond.
usuarios = {
'jsilva': {
'nome': 'junior',
'sobrenome': 'silva',
'idade': 18,
},
'rmatheus': {
'nome': 'roberto',
'sobrenome': 'matheus',
'idade': 20,
},
}
the . title() serves to leave the words as certain titles, and as it does to leave the full name in all uppercase?
– Junin
using the upper method()
– Kaique Nakao