relations.not_in_relation

relations.not_in_relation(lhs, rhs)

Is lhs not in rhs

python
from fave_recode.relations import not_in_relation

not_in_relation('x', 'xyz')
False

Parameters

Name Type Description Default
lhs Any left hand side required
rhs Any right hand side (must work with in) required

Returns

Type Description
bool True or False