how can i have on a new line the number of days for each month between start_date and end_date in pandas? image
this what i have
sea_start_date sea_end_date
2016-04-04 2016-07-04
2016-07-04 2016-09-04
this is what i want
sea_start_date sea_end_date
2016-04 2016-05
2016-05 2016-06
2016-06 2016-07
2016-07 2016-08
2016-08 2016-09
Thank you