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