
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Return Seconds from Timedelta Object in Python Pandas
To return the seconds from Timedelta object, use the timedelta.seconds property. At first, import the required libraries −
import pandas as pd
TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s. Create a Timedelta object
timedelta = pd.Timedelta('10 s 15 ms 33 ns')
Display the Timedelta
print("Timedelta...\n", timedelta)
Return the seconds value
timedelta.seconds
Example
Following is the code
import pandas as pd # TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s # create a Timedelta object timedelta = pd.Timedelta('10 s 15 ms 33 ns') # display the Timedelta print("Timedelta...\n", timedelta) # return the seconds value res = timedelta.seconds # display the seconds print("\nTimedelta (seconds value)...\n", res)
Output
This will produce the following code
Timedelta... 0 days 00:00:10.015000033 Timedelta (seconds value)... 10
Advertisements