# https://www.globalsino.com/ICs/
# Check if an item is in a list

theList = ["Both", "and", "None", "False", "Both", "Dates", "Data", "Apple", "Both", "code", "Both"]

if 1 == 1:
    if theList.__contains__("Both"):
        print("The item is in the list.")
        
