タイトル: cookieの値の設定と取得
SEOタイトル: Pythonにおけるcookieの値の設定と取得
値の設定
|
C = cookies.SimpleCookie() C["flag"] = "0" |
値の取得
|
flag = C["flag"].value |