This code snippet will show an example list and an example dictionary object
A list is just a variable that has more than 1 value
   list = ['Value1', 'Value2', 'Value3'] # Access like this: list[0], list[1], list[2]
   dictionary = {'python':'An awesome language', 'pygame':'A python library for controlling images and getting user events'}
   # You can access a dictionary object like this: 
   #    print (dictionary['python']) # prints: An awesome language