ShriRam Changed status to publish August 18, 2023
# create a tuple
tuplex = tuple(“index tuple”)
print(tuplex)
# get index of the first item whose value is passed as parameter
index = tuplex.index(“i”)
print(index)
# define the index from which you want to search
index = tuplex.index(“p”, 5)
print(index)
# define the segment of the tuple to be searched
index = tuplex.index(“e”, 2, 10)
print(index)
# if item not exists in the tuple return ValueError Exception
index = tuplex.index(“z”)
ShriRam Changed status to publish August 18, 2023