Python, jak przełączać się między true a false

myBool = True
print(myBool)
myBool = not myBool
print(myBool)
MrStonkus