For lists you can do something as follows:-
if item in my_list:
# whatever
This works for any collection, not just for lists. For dictionaries, it checks whether the given key is present in the dictionary.
To know more about this you can have a look at the following video tutorial:-