Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 1)
1.
How do you remove an element from a list in Python?
remove(element)
pop(index)
delete(element)
discard(element)
Answer: Option
Explanation:
The pop(index) method is used to remove and return the element at the specified index in a list.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.