Comment créer une copie de tous les objets dans la liste Python

import copy
new_list = copy.deepcopy(old_list)
# Copying list itself and objects inside it(very slow, however, but there's no other methods)
Crazy Caracal