Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
10480 มุมมอง

I do not know how to get Last day of specific month . please I need helping  you to me for that .

Thank you for you .

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

first you have to import calender

and you can use monthrange() method.

monthrange(year, month)
    Returns weekday of first day of the month and number of days in month, for the specified year and month. 

for getting the last day of a month you can use this script:-

calendar.monthrange(year, month)[1] 


Hope this helps..........

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด
from calender import monthrange
from datetime import date
mdays = monthrange(year,month)[1]
date2 = date(year,month,mdays)

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
Download Odoo 8 แก้ไขแล้ว
1
พ.ค. 22
25970
0
มี.ค. 17
4196
0
พ.ย. 16
8377
2
ม.ค. 16
5629
1
ธ.ค. 23
21277