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

Python Pandas - ระบุว่าวันที่ใน DateTimeIndex เป็นวันสุดท้ายของเดือนหรือไม่


หากต้องการตรวจสอบว่าวันที่ใน DateTimeIndex เป็นวันสุดท้ายของเดือนหรือไม่ ให้ใช้ DateTimeIndex.is_month_end ทรัพย์สิน

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

import pandas as pd

สร้าง DatetimeIndex ด้วยช่วงเวลา 6 และความถี่เป็น D เช่นวัน -

datetimeindex = pd.date_range('2021-9-15 06:40:35', periods=6, tz='Australia/Adelaide', freq='15D')

แสดง DateTimeIndex -

print("DateTimeIndex...\n", datetimeindex)

ตรวจสอบว่าวันที่ใน DateTimeIndex เป็นวันสุดท้ายของเดือนหรือไม่ −

print("\nCheck whether the date in DateTimeIndex is the last day of the month...\n",
datetimeindex.is_month_end)

ตัวอย่าง

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

import pandas as pd

# DatetimeIndex with period 6 and frequency as D i.e. days
# The timezone is Australia/Adelaide
datetimeindex = pd.date_range('2021-9-15 06:40:35', periods=6, tz='Australia/Adelaide', freq='15D')

# display DateTimeIndex
print("DateTimeIndex...\n", datetimeindex)

# display DateTimeIndex frequency
print("DateTimeIndex frequency...\n", datetimeindex.freq)

# Check whether the date in DateTimeIndex is the last day of the month
print("\nCheck whether the date in DateTimeIndex is the last day of the month...\n",
datetimeindex.is_month_end)

ผลลัพธ์

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

DateTimeIndex...
DatetimeIndex(['2021-09-15 06:40:35+09:30', '2021-09-30 06:40:35+09:30',
'2021-10-15 06:40:35+10:30', '2021-10-30 06:40:35+10:30',
'2021-11-14 06:40:35+10:30', '2021-11-29 06:40:35+10:30'],
dtype='datetime64[ns, Australia/Adelaide]', freq='15D')
DateTimeIndex frequency...
<15 * Days>

Check whether the date in DateTimeIndex is the last day of the month...
[False True False False False False]