The code not
in front of True
makes the expression result in False
. If something is not true, it has to be false.
not
is the negation operator. It turns values into their opposite.
When we change a value to its opposite with not
, we negate it, like here with not True
.
>>> print(not True)
False