* Tuple is also an ordered sequence of items as List. Tuple also holds multiple data types.\   * The only difference in Tuple & List is that Tuple is immutable; once created it cannot be changed.
n.extend([4,6,98,75]) ---> [1,5,3,6,-2,3,4,6,98,75] // can extend the list ,more than one element n[2] = 53 ---> [1,5,53,6,-2,3] // replace element at particular ...