I have a list with some set in it, the list looks like this:
[{1,2},{2,3},{0,1}]
How can I copy it to a new one, and they will not have any effect with each other?
I have used these functions, but no way to change them.
a = [{1,2}, {0}, {0}, set()]
b = a[:]
b = copy.copy(a)