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

if x == 0:  # [compare-to-zero]
    print("x is equal to zero")

if y != 0:  # [compare-to-zero]
    print("y is not equal to zero")