lookon> Thank you for your help.It works.  However, I am using Google
    lookon> App Engine and cannot import dateutil and epsilon.

I don't know how Google App Engine works, but are you not able to install
pure Python modules?

    lookon> Are there any other ways?

Take a look at the time.strptime function to generate a tuple, then use

    t = time.strptime(timestamp, format)
    t1 = datetime.datetime(*t[0:6])

Note that with this solution you will have to handle the timezone offset
yourself.

Skip
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to