是否有一种不使用datetime库的方法,因为我需要在Deployment Manager中的python模板上实现它,并且它不支持该库(仅“时间”库)?
date = current_date
Input: 30
Output: current_date + 30
答案 0 :(得分:1)
time
模块将使用time.time()
为您提供当前日期。
以秒为单位。要增加30天,请增加30天的秒数。
>>> import time
>>> current_date = time.time()
>>> time.ctime(current_date)
'Mon Mar 04 11:45:20 2019'
>>> plus30days = current_date + 30 * 24 * 60 * 60
>>> time.ctime(plus30days)
'Wed Apr 03 12:45:20 2019'
有一个小时的差异,因为在我的时区,时钟将在接下来的30天内前进。