Many times in programming, we want to keep track of certain items These items can be anything: names, data points, words, etc. Python provides a few different ways of tracking them that we’ll talk about today. These are the dictionary (dict), set (set) and we’ll also review a little bit about the most basic form, the list (list). Refresher on Lists If you remember from…