FLY
Life is like riding a bicycle, to keep your balance, you must keep moving.

使用python中的calendar,原型如下:

calendar.monthrange(year, month)

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

#import calendar

week_day = calendar.monthrange(2012,11)[0]

days = calendar.monthrange(2012,11)[1]

 

posted on 2012-12-13 15:06  juice_li  阅读(351)  评论(0编辑  收藏  举报