Skip to content
Subhajit Sahu edited this page Mar 25, 2021 · 7 revisions

Checks if value is false. 📰 📘

Similar: and_, or_, not_, xor.


not_(a)
# a: a boolean
from extra_boolean import not_


not_(False)
# True

not_(True)
# False


References

Clone this wiki locally