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

if not x:
    print("x is an empty string")

if y:
    print("y is not an empty string")