Tuples in Python
tuples are similar to lists ,tuples are sequnces too,but the diffrences is tuples are immutable,they cant be modified once they are created
tuples can be easliy created by using parentheses( ),and elmets can be seperated by commas ( , )
converting to tuples
we can use tuple constructer function converting normal strings and list to tuples
##tuple indexing
tuples indexing are same as the list indexing,we can start our index number with 0 from the beggining of the elemnet and we can acess last element by sing -1 as the index reverse number
##deleting a tuple
you can delete tuple easily by using del key word ,example is given below
slicing tuples
we can slice tuples just like lists,all we need to do is to provide the starting index and the ending index of the tuple
##max and min in tuples