Did anybody notice that the interval of second in Python datetime is [00,61] see the table in the bottom of this page. http://docs.python.org/library/datetime.html#strftime-strptime-behavior

Why?

link|improve this question

0% accept rate
Day of year also goes from [1, 366] in order to accomodate leap days. – plaes Feb 16 at 6:56
-1 because +6 for a question answered in the link it contains is ridiculous. – Wooble Feb 16 at 11:25
+1 because a question that points out an interesting fact that I did not know about is useful. – EOL Feb 17 at 9:03
@storm: Please don't forget to mark one answer as accepted, if it indeed answered your question. This will even earn you reputation. :) – EOL Feb 17 at 9:03
@storm, you've been here recently enough, you should definitely mark some questions as accepted when they answer your question. 0% acceptance is just silly. – Wayne Werner May 1 at 20:34
feedback

4 Answers

The answer is a little further down in the page:

The range really is 0 to 61; according to the Posix standard this accounts for leap seconds and the (very rare) double leap seconds. The time module may produce and does accept leap seconds since it is based on the Posix standard, but the datetime module does not accept leap seconds in strptime() input nor will it produce them in strftime() output.

This is an interesting behavior, indeed.

link|improve this answer
hmm,I too exiting to ignore the explanation. – storm Feb 16 at 6:07
feedback

Probably to account for leap seconds.

link|improve this answer
feedback

When you have to add leap second it will be helpful to calculate that. You can search on net for leap second. Due to that second range in python is 0-61.

link|improve this answer
1  
Actually it's up to 61 for double leap seconds. – plaes Feb 16 at 6:57
feedback

Leap seconds.

It has been the case that there have been 62 seconds in a minute in the past.

It adjusts for the world spinning slower.

Part of this is down to tides. The energy for the tides comes from the rotation of the earth and moon. The result is that the world slows down.

If global warming takes place the oceans get hotter and expand. That is like a skater throwing their arms out, and the spin slows down. That hasn't taken place. The measurement of ocean levels doesn't agree with the rotation measurements. It's likely to be down to problems with the earth's surface moving, which is far larger than the sea level rise.

link|improve this answer
2  
Global warning is not responsible for leap seconds. This is just confusion added to an already complex topic. – MatthieuW Feb 16 at 9:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.