python list different dict code example
Example: How are Python dictionaries different from Python lists?
list1 = ["a", "b" ,"c"] # a bunch of things
dictionary1 = {"a":1, "b":2, "c":3} # like a list but each part of it has an associated extra bit