First I have written a class I need for some purposes. I have several objects of this class And I have put them in a list. It could be something like:
obj0=created_class(0)
obj1=created_class(1)
List_of_obj=[obj0,obj1]
Now I need a deep copy of the list:
Deep_copy=List_of_obj[:]
My question is: this will instantiate new objects from created class?