Python, jak przełączać się między true a false
myBool = True
print(myBool)
myBool = not myBool
print(myBool)
MrStonkus
myBool = True
print(myBool)
myBool = not myBool
print(myBool)