如何在python中获得昨天
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/19779790/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to get yesterday in python
提问by David542
To get now, I can do:
现在,我可以这样做:
now = datetime.datetime.now()
How would I get 24 hours ago?
我如何获得 24 小时前的信息?
now - 24 hrs. ?
采纳答案by David542
Use timedelta
:
使用timedelta
:
datetime.datetime.now() - datetime.timedelta(days=1)
http://docs.python.org/2/library/datetime.html#timedelta-objects
http://docs.python.org/2/library/datetime.html#timedelta-objects
回答by Plasmarob
you could use:
你可以使用:
datetime.date.fromordinal(datetime.date.today().toordinal()-1)
Get yesterday's date in Python, DST-safe
this will help with formatting:
这将有助于格式化:
http://www.cyberciti.biz/faq/howto-get-current-date-time-in-python/
http://www.cyberciti.biz/faq/howto-get-current-date-time-in-python/