Timedelta ऑब्जेक्ट से नैनोसेकंड वापस करने के लिए, timedelta.microseconds . का उपयोग करें संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
TimeDeltas पायथन का मानक डेटाटाइम लाइब्रेरी है जो एक अलग प्रतिनिधित्व टाइमडेल्टा का उपयोग करता है। इकाई 'us' का उपयोग करके माइक्रोसेकंड के लिए स्ट्रिंग इनपुट सेट करें। Timedelta ऑब्जेक्ट बनाएं
timedelta = pd.Timedelta('12 min 40 us')
टाइमडेल्टा प्रदर्शित करें
print("Timedelta...\n", timedelta)
माइक्रोसेकंड मान लौटाएं
timedelta.microseconds
उदाहरण
निम्नलिखित कोड है
import pandas as pd # TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s # set string input for microseconds using unit 'us' # create a Timedelta object timedelta = pd.Timedelta('12 min 40 us') # Display the Timedelta: print("Timedelta...\n", timedelta) # return the microseconds value res = timedelta.microseconds # display the microseconds print("\nTimedelta (microseconds value)...\n", res)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा
Timedelta... 0 days 00:12:00.040000 Timedelta (microseconds value)... 40000