পিরিয়ড অবজেক্টের স্ট্রিং উপস্থাপনা ফরম্যাট করতে এবং ফেরত দিতে, 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