Published
- 1 min read
python negation of an statement
The solution for this is noted below
python negation of an statement
Solution
x = False
if not x :
print("condition met")
else:
print("condition not met")
Try other methods by searching on the site. That is if this doesn’t work