需要当前的日期,并显示出时间轴,然后推出七天前的具体日期 1#! /usr/bin/env python2#-*- coding=utf-8 -*-3importre4importtime5fromdatetimeimportdatetime6now =datetime.now()7list = [0,31,28,31,30,31,30,31,31,30,31,30,31]8defjudge(year):#判断是否是闰年9ifyear % 100 == 0andyear ...