str1 = "" str2 = None str3 = "hello" if str2: print "not null" else: print "null"
这样,不仅可以判定字符串是否为空,还能判定是否为None
python--字符串为空
时间: 2024-11-05 15:54:23
str1 = "" str2 = None str3 = "hello" if str2: print "not null" else: print "null"
这样,不仅可以判定字符串是否为空,还能判定是否为None
python--字符串为空