So i created a list like this:
my_list = [1, 3, 5]
number = input("Choose a number from 1 to 5: ")
Now I want to say: if the number is inside the list: print("ERROR"), if the number is not inside the list: print(number)
So if I type 2 it will print me the 2, if I type 1 it will print me ERROR
How am I doing that?