अजगर datetime.date वस्तुओं की सुपीरियर सरणी वापस करने के लिए, datetimeindex.date का उपयोग करें पंडों में संपत्ति।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
3 अवधि और आवृत्ति के साथ एक डेटाटाइम इंडेक्स बनाएं जैसे कि नैनोसेकंड -
datetimeindex = pd.date_range('2021-10-20 02:30:50', periods=3, tz='Australia/Sydney', freq='ns')
डेटटाइम इंडेक्स प्रदर्शित करें -
print("DateTimeIndex...\n", datetimeindex)
टाइमज़ोन जानकारी के बिना टाइमस्टैम्प का केवल दिनांक भाग लौटाता है -
print("\nThe numpy array (date part)..\n",datetimeindex.date)
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # DatetimeIndex with period 3 and frequency as us i.e. nanoseconds # The timezone is Australia/Sydney datetimeindex = pd.date_range('2021-10-20 02:30:50', periods=3, tz='Australia/Sydney', freq='ns') # display DateTimeIndex print("DateTimeIndex...\n", datetimeindex) # Returns only the date part of Timestamps without timezone information print("\nThe numpy array (date part)..\n",datetimeindex.date)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
DateTimeIndex... DatetimeIndex([ '2021-10-20 02:30:50+11:00', '2021-10-20 02:30:50.000000001+11:00', '2021-10-20 02:30:50.000000002+11:00'], dtype='datetime64[ns, Australia/Sydney]', freq='N') The numpy array (date part).. [datetime.date(2021, 10, 20) datetime.date(2021, 10, 20) datetime.date(2021, 10, 20)]