Python Как переключаться между истинными и ложными

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