Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 51)
51.
How can you check if a specific element exists in a Python list?
element in list
list.contains(element)
list.find(element)
list.has(element)
Answer: Option
Explanation:
The in keyword is used to check if a specific element exists in a Python list.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.