python输入数字变成月份
python输入数字变成月份
1、思路说明
可计算给定区间的时间差,即两者之间共包含几个月。然后由第一个月(开始时间)逐渐累积,最后得到给定时间区间所有月份的清单。
2、时间差计算:我们可以使用第三方库dateutil中的rrule.count函数来实现。
Importdatetimefromdateutilimportrrule
start=datetime.datetime.strptime('2019.01','%Y.%m')
end=datetime.datetime.strptime('2019.05','%Y.%m')print(start.month)
rrule.rrule(rrule.MONTHLY,dtstart=start,until=end).count()
3、每月累积计算:在这里,我们可以使用for循环和range()函数,根据总月数,逐步累积,例如:2019.01-2019.05共5个月,从0到4迭代,从1+0=1到1+4=5,就可以得到所有月份;此外,当月迭代累积结果超过12时,将累积结果除以12取余,并将年份加1,就可以得到正确的年月时间。
importdatetimefromdateutilimportrruledefget_each_month(start_month,end_month):ifstr(start_month).count('.')!=1orstr(end_month).count('.')!=1:print("ParameterError:Plsinputastringsuchas'2019.01'")return[]ifint(str(start_month).split('.')[1])>12orint(str(end_month).split('.')[1])>12:print('ParameterError:Plsinputcorrectmonthrangesuchasbetween1to12')return[]ifint(str(start_month).split('.')[1])==0orint(str(end_month).split('.')[1])==12:print('ParameterError:Plsinputcorrectmonthrangesuchasbetween1to12')return[]
start=datetime.datetime.strptime(start_month,"%Y.%m")
end=datetime.datetime.strptime(end_month,"%Y.%m")
month_count=rrule.rrule(rrule.MONTHLY,dtstart=start,until=end).count()#计算总月份数
ifend
list_month=[]
year=int(str(start)[:7].split('-')[0])#截取起始年份
forminrange(month_count):#利用range函数填充结果列表
month=int(str(start)[:7].split('-')[1])#截取起始月份,写在for循环里,作为每次迭代的累加基数
month=month+mifmonth>12:ifmonth%12>0:
month=month%12#计算结果大于12,取余数
ifmonth==1:
year+=1#只需在1月份的时候对年份加1,注意year的初始化在for循环外
else:
month=12
iflen(str(month))==1:
list_month.append(str(year)+'.0'+str(month))else:
list_month.append(str(year)+'.'+str(month))returnlist_month
以上就是python输入数字变成月份的方法,基本的流程分享给大家,看懂后可以进行实例部分的尝试。更多Python学习教程请关注IT培训机构:千锋教育。

猜你喜欢LIKE
相关推荐HOT
更多>>
python中open函数的使用方法
python中open函数的使用方法open中文翻译为打开的意思。在python中open函数可用于打开文件,并返回创建一个file对象,通过文件对象对文件进行各...详情>>
2023-11-08 19:42:27
python中字典按key值排序的实现方法
python中字典按key值排序的实现方法之前小编介绍了字典本身不可排序,但按值可以,小编也介绍了按value值排序的三种方法。sorted()函数可以对数...详情>>
2023-11-08 19:21:28
python中如何实现列表与集合相互转换?
python中如何实现列表与集合相互转换?python中,集合具有唯一性,同一集合中输出的元素不能相同,具有去重功能,可以完成列表去重,所以可以使...详情>>
2023-11-08 19:09:52
python中partial函数如何使用?
python中partial函数如何使用?1.函数描述:设置函数参数,返回新的函数,更加简单的调用这个函数。2.语法:partial()3.常见模块搭配使用:funct...详情>>
2023-11-08 18:59:18热门推荐
python中open函数的使用方法
沸python中字典items()函数如何使用?
热python中字典按key值排序的实现方法
热python中如何实现列表与集合相互转换?
新python中partial函数如何使用?
如何使用python中的optionparser模块?
pythonslice的三个参数
pythonstr.zfill填充字符串
python异常中常见关键字
python输入数字变成月份
python如何判断集合的超集
pythonisprintable判断字符的使用
python断言的使用注意
python怎么处理字符编码问题
技术干货






