Login and get codingIn this bite we will look at this small 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 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 logs are sorted in ascending order. Check out the docstrings and the TESTS for more info.
Good luck and keep calm and code in Python!
1155 out of 1361 users completed this Bite.
Will you be Pythonista #1156 to crack this Bite?
Resolution time: ~70 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 5.7 on a 1-10 difficulty scale.
» Up for a challenge? 💪