set:
#!D:\anzhuang\python\python.exe
import codecs, sys, cgi, cgitb
sys.stdout = codecs.getwriter('utf-8')(sys.stdout.buffer)
print ('Content-Type: text/html')
print ('Set-Cookie: name="菜鸟教程";expires=Wed, 28 Aug 2019 18:30:00 GMT')
print ()
print ("""
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>
<h1>Cookie set OK!</h1>
</body>
</html>
""")
get:
#!D:\anzhuang\python\python.exe
import codecs, sys, cgi, cgitb, os, http.cookies
sys.stdout = codecs.getwriter('utf-8')(sys.stdout.buffer)
print ('Content-Type: text/html')
print ()
print ("""
<html>
<head>
<meta charset="utf-8">
<ti