Is there a way using Python's standard library to easily determine (i.e. one function call) the last day of a given month?
If the standard library doesn't support that, does the dateutil package support this?
feedback
|
|
I didn't notice this earlier when I was looking at the documentation for the calendar module, but a method called monthrange provides this information:
so:
seems like the simplest way to go. My previous answer still works, but is clearly suboptimal. | ||||
|
feedback
|
|
EDIT: See @Blair Conrad's answer for a cleaner solution
| ||||
|
feedback
|
|
EDIT: see my other answer. It has a better implementation than this one, which I leave here just in case someone's interested in seeing how one might "roll your own" calculator. @John Millikin gives a good answer, with the added complication of calculating the first day of the next month. The following isn't particularly elegant, but to figure out the last day of the month that any given date lives in, you could try:
| ||||
|
feedback
|
|
Another solution would be to do something like this:
And use the function like this:
| |||||||||
feedback
|