Python: Copier un tuple

Author:
Python: Copier un tuple
       

x = (1, 2, 3)

y = x

print x
print y