我有一个使用 Python 从 POST 调用返回的值 cookie。
我需要检查该cookie
值是空还是空。因此,我需要一个 if 条件的函数或表达式。我怎样才能在 Python 中做到这一点?例如:
if cookie == NULL
if cookie == None
PScookie
是存储值的变量。
试试这个:
if cookie and not cookie.isspace():
# the string is non-empty
else:
# the string is empty
以上考虑了字符串是None
或一系列空格的情况。
在python中,bool(sequence)
如果False
序列为空。由于字符串是序列,这将起作用:
cookie = ''
if cookie:
print "Don't see this"
else:
print "You'll see this"