How can I add a new key to multiple dictionaries at once? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

How can I add a new key to multiple dictionaries at once?

Suppose that I have several dictionaries, each holding some data about clients of a gym. (one dictionary store ages, the other stores weight, and so on). How can I insert a new client in all dictionaries in a single move?

5th Jan 2018, 6:48 PM
Yuri DisarĆ³ Amado
Yuri DisarĆ³ Amado - avatar
1 Resposta
0
You can store the dictionaries in a big dictionarie, then create a function that adds that key for each dictionarie with a for bucle. If you let me give you other way to do it, if you know classes you could create a Person Class that stores all that values, then you can make a dictionarie with the person's name as the key and Person Class as the value :)
5th Jan 2018, 7:15 PM
SebastiƔn Zapata
SebastiƔn Zapata - avatar