如何在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

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-19 14:35:47  来源:igfitidea点击:

How to get yesterday in python

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

回答by Plasmarob

you could use:

你可以使用:

datetime.date.fromordinal(datetime.date.today().toordinal()-1)

Get yesterday's date in Python, DST-safe

在 DST 安全的 Python 中获取昨天的日期

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/