The long and the short of why time is hard
Out of 291 trips taken by W20529, how long was the longest? How short was the shortest? Does anything look fishy?
As before, data has been loaded as onebike_durations
.
Diese Übung ist Teil des Kurses
Working with Dates and Times in Python
Anleitung zur Übung
- Calculate
shortest_trip
fromonebike_durations
. - Calculate
longest_trip
fromonebike_durations
. - Print the results, turning
shortest_trip
andlongest_trip
into strings so they can print.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Calculate shortest and longest trips
shortest_trip = ____(____)
longest_trip = ____(____)
# Print out the results
print("The shortest trip was " + ____ + " seconds")
print("The longest trip was " + ____ + " seconds")