The most common operations that we perform with tuple include joining tuples and slicing tuples.
Joining tuples:-
The + operator, the concatenation operator, when used with two tuples, join two tuples.
e.g.,
t1=(1, 2, 3, 4, 5) t2=(6, 7, 8, 9) print(t1+t2)
Output- (1,2,3,4,5,6,7,8,9)

Slicing the tuples:-
Tuple slices, like list-slices are the sub parts of the tuple extracted out. We can use indexes of tuple elements to create tuple slices.
e.g.,
t=(1,2,3,4,5,6,7,8,9) print(t[2:5])
Output- (3,4,5)

This is all about operation on tuples in python.