Module 2

not

Reversing a condition.

The opposite

The not operator reverses a boolean value. True becomes False, and False becomes True.

Python
print(not True)
print(not False)
False True
Python
done = False
if not done:
    print("Keep going")
Keep going

What does not False evaluate to?