I'm stuck on this part of a code. Here is an example of a sample text
items = [variable1, variable2, variable3]
choice = input("Input variable here: ")
if choice != items:
print("Item not found")
else:
print("Item found")
That is an example of what I'd like to do. I want to work out if what the user has inputted in is part of a given list. This is python 3.5