How to Get First Date of Last Month in Python?

Published On: 11/10/2022 | Category: Python


Hi Guys,

In this tute, we will discuss how to get last month first date in python. if you want to see example of python get last month first day then you are a right place. This article goes in detailed on python get last month date. I’m going to show you about python get first date of previous month.

I'll demonstrate how to use datetime and relativedelta to find the first day of the following month in this example. let's examine a straightforward example with output.

You can use these examples with python3 (Python 3) version.

So let's see bellow example:

Example 1:

main.py
import datetime
from dateutil import relativedelta
  
today = datetime.date.today()
  
# Getting Last Month First Date
lastMonthDate = today - relativedelta.relativedelta(months=1, day=1)
print(lastMonthDate);
Output
2022-09-01

It will help you....

Happy Pythonic Coding!