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培訓機構:千鋒教育。