Python Add Months to Date Example
Published On: 09/06/2022 | Category:
Python
Hello Guys,
This article will provide some of the most important example python add months to a date. We will look at example of add months to date python pandas. this example will help you add months to date python datetime. Here you will learn add months to a date python. Alright, let’s dive into the steps.
Here I will give an example for how to add months to date in python. I am use datetime and time module to add months date.
So let's see the below example:
Example : 1from datetime import datetime from dateutil.relativedelta import relativedelta currentTimeDate = datetime.now() + relativedelta(months=1) currentTime = currentTimeDate.strftime('%Y-%m-%d') print(currentTime)Output:
2022-07-09Example : 2
import pandas as pd initial_date = "2022-06-09" req_date = pd.to_datetime(initial_date) + pd.DateOffset(months=2) req_date = req_date.strftime('%Y-%m-%d') print(req_date)Output:
2022-08-09
It will help you....