Home »
Python »
Python Tuples MCQs
What is the functionality of the Not in the keyword in a python tuple?
39. What is the functionality of the Not in the keyword in a python tuple?
- Not in keyword returns true if a specific element is not there in the tuple
- Not in keyword returns false if a specific element is not there in the tuple
Answer: A) Not in keyword returns true if a specific element is not there in the tuple
Explanation:
Not in keyword returns true if a specific element is not there in the tuple.