Négation python d'une déclaration

x = False
if not x :
    print("condition met")
else:
    print("condition not met")
AttractivePenguin