When to use a tuple vs list vs dictionary in Python? Technology Community › Category: Python › When to use a tuple vs list vs dictionary in Python? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Use a tuple to store a sequence of items that will not change. Use a list to store a sequence of items that may change. Use a dictionary when you want to associate pairs of two items.