Collections


About Collections

for element in collection:
    do something with the element

About Sequences

Collection literals

Casting and concatenating collections

About dicts

flora_to_color = { 'spruce': 'green', 'apple': 'red', 'shamrock': 'green',

  'banana': 'yellow', 'potato': 'brown', 'eggplant': 'purple' }

flora_to_color[ 'lemon' ] = 'yellow'