Add minutes to DateTime Python

This Python DateTime tutorial will teach you how to add minutes to DateTime. In the following example, we will add 5 minutes to the current date and time.

# Import the datetime module
import datetime

# Get the current date and time
date_time = datetime.datetime.now()

# Add 5 minutes to the date and time
date_time = date_time + datetime.timedelta(minutes=5)

# Display the date and time
print("Date and time after 5 minutes:", str(date_time))

Free learning resources: AiHintsCodeAllow

Leave a Comment

Your email address will not be published.