You need to copy the value instead of the link, you can do:
y=x[:]
Instead
y = x
You can also use a copy of lib:
import copy
new_list = copy.copy(old_list)
If the list contains objects and you want to copy them as well, use a generic copy.deepcopy () instance
new_list = copy.deepcopy(old_list)
In python 3.x you can:
newlist = old_list.copy()
You can also do it in ugly mode :)
new_list = list(''.join(my_list))