“Wörterbuch in 2D Array Python konvertieren” Code-Antworten

2D -Wörterbuch in Python

# It would have the following syntax
dict_names = {'d1' : {'name':'bob', 'place':'lawn', 'animal':'man'},
              'd2' : {'name':'spot', 'place':'bed', 'animal':'dog'}}

# You can then look things up like
>>> dict_names['d1']['name']
'bob'
codeninja

Wörterbuch in 2D Array Python konvertieren

If you have a 2d array in the dictionary than this is what you do:

dictionary = {'array': [elements]} #The elements are smaller lists

New_Array = dictionary['array']
Victorious Vulture

Ähnliche Antworten wie “Wörterbuch in 2D Array Python konvertieren”

Fragen ähnlich wie “Wörterbuch in 2D Array Python konvertieren”

Weitere verwandte Antworten zu “Wörterbuch in 2D Array Python konvertieren” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen