How to check if a string is null in python
本问题已经有最佳答案,请猛点这里访问。
我有一个值cookie,它是使用python从调用后返回的。我需要检查
1 2 3 | if cookie == NULL if cookie == None |
p.s.
试试这个:
1 2 3 4 | if cookie and not cookie.isspace(): # the string is non-empty else: # the string is empty |
上面考虑了字符串为
在python中,如果序列为空,那么
1 2 3 4 5 | cookie = '' if cookie: print"Don't see this" else: print"You'll see this" |