“Convertir el diccionario en 2D Array Python” Código de respuesta

Diccionario 2d en 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

Convertir el diccionario en 2D Array Python

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

Respuestas similares a “Convertir el diccionario en 2D Array Python”

Preguntas similares a “Convertir el diccionario en 2D Array Python”

Más respuestas relacionadas con “Convertir el diccionario en 2D Array Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código