Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - รับจำนวนวันทั้งหมดของเดือนที่ระยะเวลาอยู่ใน


หากต้องการทราบจำนวนวันทั้งหมดของเดือนที่มีช่วงเวลาหนึ่งอยู่ ให้ใช้ period.daysinmonth ทรัพย์สิน

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

pandas.Period หมายถึงช่วงเวลาหนึ่ง การสร้างวัตถุระยะเวลาสองรายการ -

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

แสดงวัตถุรอบระยะเวลา -

print("Period1...\n", period1)
print("Period2...\n", period2)

รับวันในเดือนจากวัตถุสองช่วงเวลา -

res1 = period1.daysinmonth
res2 = period2.daysinmonth

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

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

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

# get the days in the month from two Period objects
res1 = period1.daysinmonth
res2 = period2.daysinmonth

# Return the days in the month from two Period objects
print("\nReturn Days in the month from the 1st Period object ...\n", res1)
print("\nReturn Days in the month from the 2nd Period object ...\n", res2)

ผลลัพธ์

สิ่งนี้จะสร้างรหัสต่อไปนี้ -

Period1...
2020-09-23
Period2...
2021-02-14

Return Days in the month from the 1st Period object ...
30

Return Days in the month from the 2nd Period object ...
28