๐Ÿ“– Beginning Python Programming /
Module: List & Collection

list & tuple

๐Ÿ“– Beginning Python Programming / List & Collection / list & tuple

Check if an item is in the list

if item in list:
    # Do something

Check if an item is NOT in the list

if item not in list:
    # Do something