Skip to content

All topics  /  Python

How To Get Yesterday Date In Python?

Python

Development teams using “How To Get Yesterday Date In Python?” in client or internal work can use this detailed guide to document project effort and hand-offs, then assess the record against delivered functionality, tests and agreed outcomes.

Validate current syntax, security guidance and supported versions through Python.org before using the example in production.

Hello Friends,

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

The datetime module is supplies classes for manipulating dates and times. This article will give you example of get current date then get yesterday a day in python.

Here I will give an example for how to get yesterday date in python. I am use datetime and time module to get yesterday date. So let's see the below example:

Let's start following example.

Example : 1

example1.py

# import datetime module
from datetime import datetime,timedelta
currentTimeDate = datetime.now() - timedelta(days=1)
currentTime = currentTimeDate.strftime('%Y-%m-%d')
print(currentTime)

Run Example

python example1.py

Output:

2021-12-16

It will help you....

# Python