Cambiar falso a la verdadera pitón

flag = False
print(flag) # False
flag = not flag
print(flag) # True
DenverCoder1