# Once a tuple is created, its elements cannot be modified or changed. # However, we can perform operations on tuples such as accessing elements or creating new tuples # Tuple is an ordered data ...
print("Access Element at Index 2:", my_tuple[2]) # Accessing the 3rd element print("Access Elements from Index 1 to 3:", my_tuple[1:4]) # Slicing ...