FUNCTIONS IN TUPLES :
Name Function Format
len - tells length of a tuple
len(t1)
min - displays min element of tuple
min(t1)
max - displays max element of tuple
max(t1)
sum - displays sum of elements in a tuple
sum(t1)
index - returns lowest index of a substring
[Link]()
count - tells occurences of a particular item
[Link]()
sorted - sorts items in ascending/descending order
sorted(t1)/sorted(t1,reverse=True)
sequence - creates tuple from any type
tuple()