अवधि वस्तु को प्रारूपित करने के लिए, period.strftime() . का उपयोग करें विधि और बिना सदी के वर्ष प्रदर्शित करने के लिए, पैरामीटर को %y के रूप में सेट करें।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा। अवधि समय की अवधि का प्रतिनिधित्व करती है। एक अवधि वस्तु बनाना
period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 8, minute = 20, second = 45)
अवधि वस्तु प्रदर्शित करें
print("Period...\n", period)
परिणाम प्रदर्शित करें। यहां, वर्ष बिना शतक के प्रदर्शित होता है
print("\nString representation (year without century)...\n", period.strftime('%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 = 8, minute = 20, second = 45) # display the Period object print("Period...\n", period) # display the result # Here, year is displayed without century print("\nString representation (year without century)...\n", period.strftime('%y'))
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा
Period... 2021-09-18 08:20:45 String representation (year without century)... 21