Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 9)
9.
Which method is used to remove the first occurrence of a specific element from a list?
remove(element)
delete(element)
pop(element)
discard(element)
Answer: Option
Explanation:
The remove(element) method is used to remove the first occurrence of a specific element from a list.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.