summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/compare-to-zero/bad.py
blob: a6b64a40793993b6e22a1f7ae5b22d24041088b3 (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")