complete list of list methods in python
1. Adding Elements 2. Removing Elements 3. Accessing Elements 4. Sorting & Reversing 5. Copying & Joining 6. List Comparison & Operations Note: Python List copy() Method with Examples The copy() method in Python returns a shallow copy of a list. This means it creates a new list with the same elements as the original, but the new list…