Mudar False para True Python

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