convert month weeks days into month days in python pandas

Solutions on MaxInterview for convert month weeks days into month days in python pandas by the best coders in the world

showing results for - "convert month weeks days into month days in python pandas"
Valentina
04 Aug 2017
1>>> p = pd.Period('2018-2-17')
2>>> p.days_in_month
328
4