19

我有一个使用 Python 从 POST 调用返回的值 cookie。
我需要检查该cookie值是空还是空。因此,我需要一个 if 条件的函数或表达式。我怎样才能在 Python 中做到这一点?例如:

if cookie == NULL

if cookie == None

PScookie是存储值的变量。

4

2 回答 2

25

试试这个:

if cookie and not cookie.isspace():
    # the string is non-empty
else:
    # the string is empty

以上考虑了字符串是None或一系列空格的情况。

于 2013-02-14T14:00:38.030 回答
4

在python中,bool(sequence)如果False序列为空。由于字符串是序列,这将起作用:

cookie = ''
if cookie:
    print "Don't see this"
else:
    print "You'll see this"
于 2013-02-14T14:00:39.803 回答