Date calculation

D

David Mostert

I'm a Newbie.

Is there a method in Python to display yesterday's date?

ie: Yesterday = Today - 1day
 
M

Mel Wilson

I'm a Newbie.

Is there a method in Python to display yesterday's date?

ie: Yesterday = Today - 1day

import time
yesternow = time.time() - 24 * 60 * 60.0
print time.ctime (yesternow)


Does a little more than you want.

Regards. Mel.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,202
Messages
2,571,057
Members
47,664
Latest member
RoseannBow

Latest Threads

Top