summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/compare-to-empty-string/bad.py
blob: 1ab940de7b995f22d4554e039aa8c3156b1a35e1 (plain)
1
2
3
4
5
6
7
8
x = ""
y = "hello"

if x == "":  # [compare-to-empty-string]
    print("x is an empty string")

if y != "":  # [compare-to-empty-string]
    print("y is not an empty string")