list.clear()
list.clear() works on a list. Lists can change. Many methods update the same list (append, pop, sort, insert) instead of returning a new one.
list.clear() — output — []. clear empties the same list.
Trap for list.clear() — 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.