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

Updated on: 13-Oct-2021

230 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements