首页 > 代码库 > Python得到前面12个月的数据,Python得到现在时间 前一年的数据,
Python得到前面12个月的数据,Python得到现在时间 前一年的数据,
#Python 实现得到现在时间12个月前的每个月# 假设现在的时间是2016年9月25日#得到现在的时间 得到now等于2016年9月25日now = datetime.datetime.now()#得到今年的的时间 (年份) 得到的today_year等于2016年today_year = now.year#今年的时间减去1,得到去年的时间。last_year等于2015last_year = int(now.year) -1#得到今年的每个月的时间。today_year_months等于1 2 3 4 5 6 7 8 9,today_year_months = range(1,now.month+1)#得到去年的每个月的时间 last_year_months 等于10 11 12 last_year_months = range(now.month+1, 13)#定义列表去年的数据data_list_lasts = []#通过for循环,得到去年的时间夹月份的列表#先遍历去年每个月的列表for last_year_month in last_year_months: # 定义date_list 去年加上去年的每个月 date_list = ‘%s-%s‘ % (last_year, last_year_month) #通过函数append,得到去年的列表 data_list_lasts.append(date_list) data_list_todays = []#通过for循环,得到今年的时间夹月份的列表#先遍历今年每个月的列表for today_year_month in today_year_months: # 定义date_list 去年加上今年的每个月 data_list = ‘%s-%s‘ % (today_year, today_year_month) #通过函数append,得到今年的列表 data_list_todays.append(data_list)#去年的时间数据加上今年的时间数据得到年月时间列表data_year_month = data_list_lasts + data_list_todaysdata_year_month.reverse()
程序运行过程图片
Python得到前面12个月的数据,Python得到现在时间 前一年的数据,
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。