Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 21)
21.
Which method is used to add an element at the end of a list in Python?
list.append(element)
list.insert(-1, element)
list.add_last(element)
list.push(element)
Answer: Option
Explanation:
The append() method is used to add an element at the end of a list in Python.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.