Sean's Note: [Python] How to get the last day of the month

2014年7月4日 星期五

[Python] How to get the last day of the month

想要知道某個特定月份有幾天,可以直接呼叫 calendar.monthrange(2014, 2),

會回傳第一天是禮拜幾和該月有幾天。

範例:
import calendar
calendar.monthrange(2014, 2)
# (5, 28) # 禮拜六,28天
calendar.monthrange(2014, 3)
# (5, 31) # 禮拜六,31天
calendar.monthrange(2014, 4)
# (1, 30) # 禮拜二,30天

沒有留言:

張貼留言