Python Programming - Tuples - Discussion

Discussion Forum : Tuples - General Questions (Q.No. 11)
11.
How can you check if a specific element exists in a tuple?
element in tuple
tuple.exists(element)
tuple.contains(element)
element.exist_in(tuple)
Answer: Option
Explanation:
Using the in keyword, you can check if an element exists in a tuple.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.