FLYING_THINGS = ["bird", "plane", "superman", "this example"] def is_flying_thing(an_object): return an_object in FLYING_THINGS def is_not_flying_thing(an_object): return an_object not in FLYING_THINGS