

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 timedelta in nanoseconds for internal compatibility
Use the timedelta.delta property in Pandas to get the timedelta in nanoseconds for internal compatibility.
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 40 ns')
Return the timedelta in nanoseconds
timedelta.delta
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 40 ns') # display the Timedelta print("Timedelta...\n", timedelta) # return the timedelta in nanoseconds res = timedelta.delta # display the timedelta print("\nTimedelta (nanoseconds)...\n", res)
Output
This will produce the following code
Timedelta... 5 days 00:01:45.000000040 Timedelta (nanoseconds)... 432105000000040
- Related Questions & Answers
- Python Pandas - Return the nanoseconds from Timedelta object
- Python Pandas - Return the nanoseconds from Timedelta object using integer input
- Python Pandas - Return the nanoseconds from Timedelta object using string input
- Python Pandas - Get the number of days from TimeDelta
- Python Pandas - Get the seconds from Timedelta object using integer input
- Python Pandas - Get the seconds from Timedelta object using string input
- Python Pandas - Get the Total seconds in the duration from the Timedelta object
- Python Pandas - Extract the Number of nanoseconds for each element from TimeDeltaIndex
- Convert a pandas Timedelta object into a Python timedelta object
- Python Pandas - Round the Timedelta with specified resolution
- Python Pandas - Round the Timedelta with hourly frequency
- Python Pandas - Round the Timedelta with minutely frequency
- Python Pandas - Round the Timedelta with seconds frequency
- Python Pandas - Round the Timedelta with daily frequency
- Python Pandas - Return the microseconds from Timedelta object
Advertisements