I have a dictionary that I want to fill with two lists, one that has the key and another that has the values, when it is with the for to save each item it is removed in order and saves them, but at the time of printing the dictionary I see that the last value is repeated in all the items
arreglo = [1,2,3,4,5,6]
arreglo_2 = ['aguilas', 'tigres', 'leones', 'estrellas', 'gigantes', 'toros', ]
EQUIPOS_DICT = {}
for a in arreglo:
for a2 in arreglo_2:
print 'Se guardara %s' % (a2)
EQUIPOS_DICT[str(a)] = a2
EQUIPOS = EQUIPOS_DICT.items()
print EQUIPOS
SALIDA>
[('1', 'toros'), ('3', 'toros'), ('2', 'toros'), ('5', 'toros'), ('4', 'toros'), ('6', 'toros')]