python comment basculer entre vrai et faux

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