Hi, I'm doing a test with lists and dictionaries, I got to a point where I had something like that.
datos = {'key1':'a','key2':'b','key3':'c'}
dic = ["alfa","beta","gama"]
My intention is to print
a,alfa
b,beta
c,gama
I tried it with a 'for' cycle but for each element of the dictionary I printed four times one of the list
for i in datos:
t = datos[i]
for l in dic:
print t,l
Among several ways I've tried, one track ..