Python, wie man zwischen True und Falsch wechselt

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