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 - Return the nanoseconds from Timedelta object using string input
To return the nanoseconds from Timedelta object, use the timedelta.nanoseconds property. At first, import the required libraries −
import pandas as pd
TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s. Set string input for nanoseconds using unit 'ns'. Create a Timedelta object
timedelta = pd.Timedelta('10 min 40 ns')
Display the Timedelta
print("Timedelta...\n", timedelta)
Return the nanoseconds value
timedelta.nanoseconds
Example
Following is the code
import pandas as pd
# TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s
# set string input for nanoseconds using unit 'ns'
# create a Timedelta object
timedelta = pd.Timedelta('10 min 40 ns')
# display the Timedelta
print("Timedelta...\n", timedelta)
# return the nanoseconds value
res = timedelta.nanoseconds
# display the nanoseconds
print("\nTimedelta (nanoseconds value)...\n", res)
Output
This will produce the following code
Timedelta... 0 days 00:10:00.000000040 Timedelta (nanoseconds value)... 40
Advertisements