list.copy()
list.copy() works on a list. Lists can change. Many methods update the same list (append, pop, sort, insert) instead of returning a new one.
list.copy() — output — ['Asha'] then ['Asha', 'Ravi']. copy is a new list.
Trap for list.copy() — append([1, 2]) nests a list. extend([1, 2]) adds 1 and 2. sort vs sorted is a viva favourite.
index → 0 1 2 list → [Asha, Ravi, Neha]
Exam tip
In place or new list? Say it first, then one example.