python中怎样划分时间段_在Python中,如何将日期范围划分为月份?

本文介绍如何在Python中使用`calendar`模块和`datetime`来将日期范围(例如'2018-02-15'到'2018-04-23')划分为按月的日期列表。首先解析开始和结束日期,然后计算跨越的年份和月份。接着创建一个函数来生成datetime对象,并逐月填充日期列表,确保包括每个范围的首尾日期。最后,将日期转换为字符串格式。
摘要由CSDN通过智能技术生成

使用python日历和会计年度变化import calendar

from datetime import datetime

begin = '2018-02-15'

end= '2018-04-23'

begin_year, begin_month, begin_date = [int(i) for i in begin.split("-")]

end_year, end_month, end_date = [int(i) for i in end.split("-")]

years = end_year - begin_year

# if date range contains more than single year, we calculate total months

if years:

months = (12 - begin_month) + end_month + (12 * (years - 1))

else:

months = end_month - begin_month

dates = []

month = begin_month

year = begin_year

def create_datetime_object(y, m, d):

return datetime.strptime('{}-{}-{}'.format(y, m, d), '%Y-%m-%d')

# append the first date

dates.append(create_datetime_object(begin_year, begin_month, begin_date))

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值