我正在尝试使用 Python 获取两个日期之间的差异。但是每次我运行我的代码时,我都会在结果中提到时间 [00:00:00]。我们如何删除并只显示天数。
import datetime
now = datetime.datetime.today().date()
print(now)
userinput = input('Enter your deadline of the project(mm/dd/yyyy)')
projectdate = datetime.datetime.strptime(userinput,'%m/%d/%Y').date()
print(projectdate)
daysleft = projectdate - now
result = (projectdate - now).days//7
print('The number of days left in your project are....' +' '+ str(daysleft) + ' '+ 'days' + ' ' + 'or' + ' ' + str(result) +' ' + 'weeks')
子衿沉夜
红颜莎娜
翻过高山走不出你
相关分类