কম্পিউটার

Python Pandas - প্রদত্ত পিরিয়ড অবজেক্টের শেষ সময় খুঁজুন


প্রদত্ত পিরিয়ড অবজেক্টের জন্য শেষ সময় খুঁজতে, period.end_time ব্যবহার করুন সম্পত্তি।

প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -

import pandas as pd

পান্ডা. পিরিয়ড সময়কালের প্রতিনিধিত্ব করে। দুটি পিরিয়ড অবজেক্ট তৈরি করা -

period1 = pd.Period("2020-09-23 03:55:20")
period2 = pd.Period(freq="T", year = 2021, month = 2, day = 14, hour = 2, minute = 35)

পিরিয়ড অবজেক্ট −

প্রদর্শন করুন
print("Period1...\n", period1)
print("Period2...\n", period2)

দুটি পিরিয়ড অবজেক্ট থেকে শেষ সময় পান −

res1 = period1.end_time
res2 = period2.end_time

উদাহরণ

নিম্নলিখিত কোড -

import pandas as pd

# The pandas.Period represents a period of time
# creating two Period objects
period1 = pd.Period("2020-09-23 03:55:20")
period2 = pd.Period(freq="T", year = 2021, month = 2, day = 14, hour = 2, minute = 35)

# display the Period objects
print("Period1...\n", period1)
print("Period2...\n", period2)

# get the end time from two Period objects
res1 = period1.end_time
res2 = period2.end_time

# Return the end time from two Period objects
print("\nDisplay the end time from the 1st Period object ...\n", res1)
print("\nDisplay the end time from the 2nd Period object ...\n", res2)

আউটপুট

এটি নিম্নলিখিত কোড তৈরি করবে -

Period1...
2020-09-23 03:55:20

Period2...
2021-02-14 02:35

Display the end time from the 1st Period object ...
2020-09-23 03:55:20.999999999

Display the end time from the 2nd Period object ...
2021-02-14 02:35:59.999999999

  1. Python Pandas - পিরিয়ড অবজেক্ট থেকে বছরের চতুর্থাংশ পান

  2. Python Pandas - প্রদত্ত পিরিয়ড অবজেক্টে প্রয়োগ করা টাইম সিরিজ ফ্রিকোয়েন্সির স্ট্রিং উপনাম ফেরত দিন

  3. Python Pandas - প্রদত্ত পিরিয়ড অবজেক্টের ফ্রিকোয়েন্সি পান

  4. Python Pandas - পিরিয়ড অবজেক্ট থেকে বছরের দিন পান