pandas.Timedelta.total_seconds — pandas 3.0.0.dev0+2102.g839747c3f6 documentation (original) (raw)

Timedelta.total_seconds()#

Total seconds in the duration.

This method calculates the total duration in seconds by combining the days, seconds, and microseconds of the Timedelta object.

See also

to_timedelta

Convert argument to timedelta.

Timedelta

Represents a duration, the difference between two dates or times.

Timedelta.seconds

Returns the seconds component of the timedelta.

Timedelta.microseconds

Returns the microseconds component of the timedelta.

Examples

td = pd.Timedelta('1min') td Timedelta('0 days 00:01:00') td.total_seconds() 60.0