Python bagaimana beralih antara benar dan salah

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