python 30天_【IT专家】我如何使用Python(最新的)精确计算过去30天?

本文由我司收集整编,推荐下载,如有疑问,请与我司联系

我如何使用

Python

(最新的)精确计算过去

30

天?

我如何使用

Python

(最新的)精确计算过去

30

天?

[

]How

would

I

compute

exactly 30 days into the past with Python (down to the minute)? In Python,

I’m

attempting

to retrieve the date/time that is exactly 30 days (30*24hrs) into the past. At present,

I’m

simply doing:

Python

,

我试图检索过去

30

(30 * 24hrs)

的日期

/

时间。目前

,

我只是在做

:

import datetime

start_date =

datetime.date.today()

+ datetime.timedelta(-30) Which

returns a datetime object, but with no time data:

它返回一个

datetime

对象

,

但没有时间数据

:

start_date.year start_date.hourTraceback (most recent call last): File

stdin

“,

line 1,

in module AttributeError:

‘datetime.date’

object has no attribute

‘hour’

64

You want to use a datetime object instead of just a date object:

您想要使用

datetime

对象而不仅仅是日期对象

:

start_date

=

datetime.datetime.now()

+

datetime.timedelta(-30)

date

just

stores

a

date

and time just a time. datetime is a date with a time.

日期只是存储日期和时间。

datetime

是带时间的日期。

tips:

感谢大家的阅读,本文由我司收集整编。仅供参阅!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值