我想编写一个函数,它通过用户输入的日期,与货架功能将其存储和调用时打印之日起三十日后。
我想这样开始的简单的东西:
import datetime
def getdate():
date1 = input(datetime.date)
return date1
getdate()
print(date1)
这显然是行不通的。
我用的回答上面的问题,现在有我的程序工作的那款! 谢谢! 现在,在接下来的部分:
我试图写一个简单的程序,它的日期,你指示我得到它的方式,并增加了30天。
import datetime
from datetime import timedelta
d = datetime.date(2013, 1, 1)
print(d)
year, month, day = map(int, d.split('-'))
d = datetime.date(year, month, day)
d = dplanted.strftime('%m/%d/%Y')
d = datetime.date(d)+timedelta(days=30)
print(d)
这给了我一个错误:年,月,日=地图(INT,d.split( ' - '))AttributeError的: 'datetime.date' 对象有没有属性 '分裂'
最后我要的是有2013年1月1日起30天,并打印2013年1月30日。
提前致谢!