Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 164 Bytes

iterate-over-dictionary-key-value-pairs.md

File metadata and controls

8 lines (6 loc) · 164 Bytes

Iterate over dictionary key value pairs

photoArr is an dictionary of photos with keys

    for key, value in photoArr.items():
        print(value)