Tuple is exactly same as List except that it is immutable. i.e once we creates Tuple object,we cannot perform any changes in that object. Hence Tuple is Read Only version of List. If our data is fixed and never changes then we should go for Tuple. Insertion Order is preservedContinue Reading