A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2005-April/052715.html below:

[Python-Dev] How do you get yesterday from a time object

[Python-Dev] How do you get yesterday from a time object [Python-Dev] How do you get yesterday from a time objectPatrick DECAT pdecat at gmail.com
Tue Apr 19 18:07:17 CEST 2005
Hi, I believe it's not the appropriate place to ask such questions.
You should check the Python users' list (
http://python.org/community/lists.html )

Anyway, here you go :

now = time.time()
nowTuple = time.localtime(now)
yesterdayTuple = time.localtime(now-60*60*24)

Regards,
Patrick.

2005/4/19, Ralph Hilton <flinkkettel at yahoo.com>:
> i'm a beginning python programmer.
> 
> I want to get the date for yesterday
> 
> nowTime = time.localtime(time.time())
> print nowTime.
> oneDay = 60*60*24 # number seconds in a day
> yday = nowTime - oneDay  # <-- generates an error
> print yday.strftime("%Y-%m-%d")
> 
> How can I just get yesterday's day?  It a simple
> concept yet it seems to be so hard to figure out.
> 
> What i'm worried about is if today is say
> June 1, 2023
> what is yesterday?   and how do i compute that?
> 
> Ralph Hilton
> 
> __________________________________
> Do you Yahoo!?
> Plan great trips with Yahoo! Travel: Now over 17,000 guides!
> http://travel.yahoo.com/p-travelguide
> _______________________________________________
> Python-Dev mailing list
> Python-Dev at python.org
> http://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: http://mail.python.org/mailman/options/python-dev/pdecat%40gmail.com
>
More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4