Yes, there is a sort contains a function for lists you can use this syntax:
if myItem in list:
# do something
Also, inverse operator:
if myItem not in list:
# do something
It's work fine for lists, tuples, sets and dicts check keys.
To know more about this you can have a look at the following video tutorial:-