summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/compare-to-zero/good.py
blob: bea3733e26762ef6926a8211c7629c5a816f687f (plain)
1
2
3
4
5
6
7
8
x = 0
y = 1

if not x:
    print("x is equal to zero")

if y:
    print("y is not equal to zero")