Home »
Python »
Python List MCQs
Which of the following methods will help you to add the element at the end of the list?
21. Which of the following methods will help you to add the element at the end of the list?
- append()
- end()
- add()
- last()
Answer: A) Append()
Explanation:
The append() method in python helps you to add the element at the end of the list.