How To Add Months Date In Python?

25-Dec-2021

.

Admin

How To Add Months Date In Python?

Hello Friends,

Now let's see example of how to add months from date day in python. I am going to show you python date to add months example. We will learn add months in date using python.

The datetime module is supplies classes for manipulating dates and times. This article will give you example of how to add months to dates in python.

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 : 1


example1.py

# import datetime module

from datetime import datetime

from dateutil.relativedelta import relativedelta

currentTimeDate = datetime.now() + relativedelta(months=2)

currentTime = currentTimeDate.strftime('%Y-%m-%d')

print(currentTime)

Run Example

python example1.py

Output:

2022-02-25

Example : 2

example2.py

# import datetime module

from datetime import timedelta, date

currentTimeDate = date.today() + relativedelta(months=5)

currentTime = currentTimeDate.strftime('%Y-%m-%d')

print(currentTime)

Run Example

python example2.py

Output:

2022-03-18

Example : 3

example3.py

# import pandas module

import pandas as pd

initial_date = "2021-12-18"

req_date = pd.to_datetime(initial_date) + pd.DateOffset(months=3)

req_date = req_date.strftime('%Y-%m-%d')

print(req_date)

Run Example

python example3.py

Output:

2022-05-25

It will help you....

#Python