Hi! Thanks for your help in advance.....
Heres my case
I have a dictionary "d" with keys as string and a dictionary as integer "1" as keys to a list [1,2,3]
d{"test.tif": {1: [1,2,3]}}
Now when I try looping through it........it gives me an error
for i in d:
for j in i:
print j
it just prints test.tif
for some reason it just takes the key as a list of strings
Any solution to go arounf this problem?
Thanks
Shaf