Pythonを使用したPOST呼び出しから返される値Cookieがあります。cookie
の値が空か空かを確認する必要があります。したがって、if条件の関数または式が必要です。 Pythonでこれを行うにはどうすればよいですか?例えば:
if cookie == NULL
if cookie == None
追伸cookie
は、値が保存される変数です。
これを試して:
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"