Making timedelta columns
Earlier in this course, you wrote a loop to subtract datetime
objects and determine how long our sample bike had been out of the docks. Now you'll do the same thing with Pandas.
rides
has already been loaded for you.
This exercise is part of the course
Working with Dates and Times in Python
Exercise instructions
- Subtract the
Start date
column from theEnd date
column to get a Series of timedeltas; assign the result toride_durations
. - Convert
ride_durations
into seconds and assign the result to the'Duration'
column ofrides
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Subtract the start date from the end date
ride_durations = ____ - ____
# Convert the results to seconds
____[____] = ride_durations.____
print(rides['Duration'].head())