not operator in Python
What is the not operator in Python?
The not operator in Python is a logical operator that simply reverses the value of a Boolean (True/False).
If the value is True, not makes it False.
If the value is False, not makes it True.
Syntax:
not conditi...
safiakhatoon.hashnode.dev1 min read