1. basic Tuples is a sequence of immutable object. It's a sequence, just like List. However, it cannot be changed. a = (1,2,3) If a tuples only contain a object, we still need to include a comma. b = (1,) 2. accessing the value b = (1,2,3,4,5) b[0] #…