Describe how to implement Cookies for Web python.
Answer / chaitanya
A cookie is an arbitrary string of characters that uniquely identify a session.
Each cookie is specific to one Web site and one user.
The Cookie module defines classes for abstracting the concept of cookies. It contains following method to creates cookie
Cookie.SimpleCookie([input])
Cookie.SerialCookie([input]
Cookie.SmartCookie([input])
for instance following code creates a new cookie ck-
import Cookie
ck= Cookie.SimpleCookie ( x )
| Is This Answer Correct ? | 0 Yes | 0 No |
What is PEP8?
How many variables are in python?
What are variables in python?
Give an example for join() and split() funcitons
Do you know what is the key difference between a list and the tuple?
How can we pass optional or keyword parameters from one function to another in Python?
Difference between python list comprehension vs. Map?
State and explain about strings?
What does the 'yield' keyword do in python?
Can python handle big data?
What is python easy?
What is __ new __ in python?