What time did the bike leave in UTC?

Having set the timezone for the first ten rides that W20529 took, let's see what time the bike left in UTC. We've already loaded the results of the previous exercise into memory.

This exercise is part of the course

Working with Dates and Times in Python

View Course

Exercise instructions

Within the for loop, move dt to be in UTC. Use timezone.utc as a convenient shortcut for UTC.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Loop over the trips
for trip in onebike_datetimes[:10]:
  # Pull out the start
  dt = trip['start']
  # Move dt to be in UTC
  dt = dt.____(____)
  
  # Print the start time in UTC
  print('Original:', trip['start'], '| UTC:', dt.isoformat())