Python | Cloning or Copying a list - GeeksforGeeks
https://www.geeksforgeeks.org/python-cloning-copying-list/
Jan 06, 2022 · Original List: [4, 8, 2, 10, 15, 18] After Cloning: [4, 8, 2, 10, 15, 18] 2. Using the extend() method The lists can be copied into a new list by using the extend() function. This appends each element of the iterable object (e.g., another list) to the end of the new list. This takes around 0.053 second to complete. Example:
DA: 78 PA: 81 MOZ Rank: 46