i want to have session without use web framework
when i execute my code it return blank page i have python 3.1 with apache 2.2
#!c:\Python31\python
print ('Content-Type: text/html\n')
print
from http import cookies
import os
c = cookies.SimpleCookie()
c["1"]="2"
c2= os.environ.get('HTTP_COOKIE')
c3= c.load(c2)
print (c3)