We can use the 'tuple( )' constructor(We will explain it later) to make a copy of the Tuple .
x = ("Mohan", "Kriti", "Salim") y = tuple(x) print("The Copied Tuple is ",y)
So , in the above code we have created a 'Tuple' and initialised to the variable 'x' .
Below is how the values are positioned in the Tuple ,
Then we have used the 'tuple( )' constructor to take the Tuple 'x' as parameter and create a new Tuple that would be the exact copy of 'x' .
Then assign it to 'y' .
And we get the below output ,