how to check if all the elements in a tuple exists code example
Example 1: python check if element exists in tuple
thistuple = ("apple", "banana", "cherry")
if "apple" in thistuple:
print("Yes, 'apple' is in the fruits tuple")
Example 2: how to check if an item is present in a tuple
>>> 2 in (2, 3, 4)
True