Iterate over dictionary key value pairs
Iterate over dictionary key value pairs
photoArr
is an dictionary of photos with keys
for key, value in photoArr.items():
print(value)
photoArr
is an dictionary of photos with keys
for key, value in photoArr.items():
print(value)
Leave a comment