Curso de Programación en Python/Dict-16
Ir a la navegación
Ir a la búsqueda
Dict-16.py
1 #!/usr/bin/python3
2 #-*-coding: utf-8 -*-
3
4 Llaves = [ "Ave", "Planta", "Piedra" ]
5 Valores = [2, 4, 7]
6
7 DictNuevo = {}
8
9 for i in range( 0, len( Valores )):
10 DictNuevo[Llaves[i]] = Valores[i]
11
12 print( "El DictNuevo:", DictNuevo )
Resultado
[rrc@Llawyr PythonClase]$ ./Dict-21.py El DictNuevo: {'Piedra': 7, 'Planta': 4, 'Ave': 2}