Login and get codingIn this Bite we will look at this short server log, finding the first and last system shutdown events:
INFO 2014-07-03T23:27:51 supybot Shutdown initiated.
...
INFO 2014-07-03T23:31:22 supybot Shutdown initiated.You'll need to calculate the time between these two events. First extract the timestamps from the log entries and convert them to
datetime
objects. Then usedatetime.timedelta
to calculate the time difference between them.You can assume the log is sorted in ascending order. Check out each function's
docstring
and the TESTS for more details on how to solve this Bite.Good luck, keep calm, and code in Python!
1420 out of 1647 users completed this Bite.
Will you be the 1421st person to crack this Bite?
Resolution time: ~68 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 5.72 on a 1-10 difficulty scale.
» Up for a challenge? 💪