Home »
Python »
Python List MCQs
How do you find the index of any particular element?
26. How do you find the index of any particular element?
- Using list.index()
- Using index().list
- Using only_index().list
Answer: A) Using list.index()
Explanation:
Using list.index() will be used to find the index of any particular element.