Learn Python Tuple with detailed explanations and example

A tuple is a built-in ordered data structure in python and it is used to store a collection of items

To create a tuple in python write comma-separated values inside the parenthesis  (small brackets).

You can access elements of a tuple by using indexing.

To create a tuple with a single element put a comma after your value

To create a tuple without using parenthesis write a comma-separated value after assigning your variable.

there are only two methods used in the tuple.

1. count() method 2. index() method

list present inside a tuple is act like a normal list means you can update or delete elements of the lis

This is the Example of list inside tuple

You can also  use a loop to iterate  in the tuple