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
Python Pandas - Get the number of days from TimeDelta
To get the number of days from TimeDelta, use the timedelta.days property in Pandas. 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('5 days 1 min 45 s')
Return the number of days
timedelta.days
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('5 days 1 min 45 s')
# display the Timedelta
print("Timedelta...\n", timedelta)
# return the number of days
res = timedelta.days
# display the days
print("\nDays...\n", res)
Output
This will produce the following code
Timedelta... 5 days 00:01:45 Days... 5
Advertisements