famafrench.utils.
any_in
Boolean variable that is True if elements in a given set a_set intersect with elements in another set b_set. Otherwise, the boolean is False.
True
False
a_set (list) – First set of elements.
b_set (list) – Second set of elements.
not set(a_set).isdisjoint(b_set) – Boolean that is True if there is a non-empty intersection between both sets. Otherwise, the boolean is False.
bool