• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

The Programming Expert

Solving All of Your Programming Headaches

  • HTML
  • JavaScript
  • jQuery
  • PHP
  • Python
  • SAS
  • Ruby
  • About
You are here: Home / Python / Convert timedelta to Seconds in Python

Convert timedelta to Seconds in Python

March 8, 2022 Leave a Comment

To convert a timedelta to seconds in Python, we can use the total_seconds() function on a timedelta object.

import datetime

datetime1 = datetime.datetime(2022,3,5,0,0,0)
datetime2 = datetime.datetime(2022,3,7,0,0,0)

timedelta_object = datetime2 - datetime1

print(timedelta_object.total_seconds())

#Output:
172800.0

When working in Python, many times we need to create variables which represent dates and times. When creating and displaying values related to the difference between two times, it is useful to be able to easily convert to different units (seconds, minutes, hours, etc.)

We can easily convert a timedelta object in Python to seconds.

A timedelta object is created when you find the difference between two datetime objects in Python.

timedelta objects have many great functions, and convert a timedelta object to seconds, we can use the total_seconds() function.

Below is a simple example of how to convert a timedelta to seconds in Python.

import datetime

datetime1 = datetime.datetime(2022,3,5,0,0,0)
datetime2 = datetime.datetime(2022,3,7,0,0,0)

timedelta_object = datetime2 - datetime1

print(timedelta_object.total_seconds())

#Output:
172800.0

Convert timedelta to Minutes and Hours Using Python

We can take the example above and easily convert a timedelta object to minutes or hours.

To convert a timedelta object to minutes, we can divide the call to total_seconds() by 60.

Below is an example in Python of how to convert a timedelta to minutes.

import datetime

datetime1 = datetime.datetime(2022,3,5,0,0,0)
datetime2 = datetime.datetime(2022,3,7,0,0,0)

timedelta_object = datetime2 - datetime1

print(timedelta_object.total_seconds()/60)

#Output:
2880.0

If you instead want to convert a timedelta object to hours, you can divide the call to total_seconds() by 3600.

Below is an example in Python of how to convert a timedelta to hours.

import datetime

datetime1 = datetime.datetime(2022,3,5,0,0,0)
datetime2 = datetime.datetime(2022,3,7,0,0,0)

timedelta_object = datetime2 - datetime1

print(timedelta_object.total_seconds()/3600)

#Output:
48.0

Hopefully this article has been useful for you to use Python to convert a timedelta to seconds.

Other Articles You'll Also Like:

  • 1.  Pandas Crosstab on Multiple Columns
  • 2.  pandas mode – Find Mode of Series or Columns in DataFrame
  • 3.  Using Python to Get All Combinations of Two Lists
  • 4.  How to Read Excel File from AWS S3 Bucket Using Python
  • 5.  Decrement For Loop with range() in Python
  • 6.  Remove Leading and Trailing Characters from String with strip() in Python
  • 7.  Clear File Contents with Python
  • 8.  Using Python to Convert Float to Int
  • 9.  Python Infinity – How to Use Infinity in Python
  • 10.  Using Python Selenium Webdriver to Refresh Page

About The Programming Expert

The Programming Expert is a compilation of a programmer’s findings in the world of software development, website creation, and automation of processes.

Programming allows us to create amazing applications which make our work more efficient, repeatable and accurate.

At the end of the day, we want to be able to just push a button and let the code do it’s magic.

You can read more about us on our about page.

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

About The Programming Expert

the programming expert main image

Welcome to The Programming Expert. We are a group of US-based programming professionals who have helped companies build, maintain, and improve everything from simple websites to large-scale projects.

We built The Programming Expert to help you solve your programming problems with useful coding methods and functions in various programming languages.

Search

Learn Coding from Experts on Udemy

Looking to boost your skills and learn how to become a programming expert?

Check out the links below to view Udemy courses for learning to program in the following languages:

Copyright © 2023 · The Programming Expert · About · Privacy Policy