Write a Python program to check whether an element exists within a tuple. code example
Example: python check if element exists in tuple
thistuple = ("apple", "banana", "cherry")
if "apple" in thistuple:
print("Yes, 'apple' is in the fruits tuple")