Python Pandas - 从 TimeDelta 对象中获取持续时间的总秒数
如需从 TimeDelta 对象中获取持续时间的总秒数,请使用 timedelta.total_seconds() 方法。
首先,导入所需的库 −
import pandas as pd
TimeDeltas 是 Python 的标准 datetime 库,使用 timedelta 的不同表示法,创建一个 TimeDelta 对象 −
timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns')
显示 TimeDelta −
print("Timedelta...\n", timedelta)
获取总秒数 −
timedelta.total_seconds()
示例
以下是代码 −
import pandas as pd # TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s # create a Timedelta object timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns') # display the Timedelta print("Timedelta...\n", timedelta) # get the total seconds res = timedelta.total_seconds() # Return the result i.e. the total seconds in the duration print("\nTotal seconds...\n", res)
输出
将生成以下代码 −
Timedelta... 2 days 11:22:25.050000045 Total seconds... 213745.05
广告