changer faux en vrai python

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