अवधि ऑब्जेक्ट को वार्षिक आवृत्ति के साथ टाइमस्टैम्प के रूप में वापस करने के लिए, period.to_timestamp() का उपयोग करें विधि और freq पैरामीटर को 'Y . के रूप में सेट करें '.
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा। अवधि समय की अवधि का प्रतिनिधित्व करती है। एक अवधि वस्तु बनाना
period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45)
अवधि वस्तु प्रदर्शित करें
print("Period...\n", period)
अवधि वस्तु का टाइमस्टैम्प प्रतिनिधित्व लौटाएं। हमने "freq" पैरामीटर का उपयोग करके आवृत्ति सेट की है। आवृत्ति 'Y' यानी वार्षिक के रूप में सेट की गई है
print("\nPeriod to Timestamp with yearly (year-end) frequency...\n", period.to_timestamp(freq='Y'))
उदाहरण
निम्नलिखित कोड है
import pandas as pd # The pandas.Period represents a period of time # Creating a Period object period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45) # display the Period object print("Period...\n", period) # Return the Timestamp representation of the Period object # We have set the frequency using the "freq" parameter # The frequency is set as 'Y' i.e. yearly print("\nPeriod to Timestamp with yearly (year-end) frequency...\n", period.to_timestamp(freq='Y'))
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा
Period... 2021-09-18 17:20:45 Period to Timestamp with yearly (year-end) frequency... 2021-12-31 00:00:00