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?
|
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?
| |||||||||||
feedback
|
|
The answer is a little further down in the page:
This is an interesting behavior, indeed. | |||
|
feedback
|
|
Probably to account for leap seconds. | |||
|
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 | |||||
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. | |||||
feedback
|