अवधि वस्तु के स्ट्रिंग प्रतिनिधित्व को प्रारूपित करने और वापस करने के लिए, period.strftime() . का उपयोग करें तरीका। इसके साथ, प्रारूप विनिर्देशक को तर्क के रूप में सेट करें जैसे strftime('%d-%b-%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 (format)...\n", period.strftime('%d-%b-%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 print("\nString representation (format)...\n", period.strftime('%d-%b-%Y')) # display the result print("\nString representation (format with different directives)...\n", period.strftime('%b. %d, %Y was a %A'))
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा
Period... 2021-09-18 08:20:45 String representation (format)... 18-Sep-2021 String representation (format with different directives)... Sep. 18, 2021 was a Saturday