How to calculate two time?

lookon areyoulookon at gmail.com
Thu Oct 9 08:57:57 EDT 2008


I have solved the problem. thank you

On Oct 9, 7:20 pm, s... at pobox.com wrote:
>     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




More information about the Python-list mailing list