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 integer 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 integer input for nanoseconds using unit 'ns'. Create a Timedelta object
timedelta = pd.Timedelta(35, unit ='ns')
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 integer input for nanoseconds using unit 'ns'
# create a Timedelta object
timedelta = pd.Timedelta(35, unit ='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:00:00.000000035 Timedelta (nanoseconds value)... 35
Advertisements