The following dataframe "Roadtrip" relates to car travel times between point A and point B. Using Pandas dataframes, how does one calculate a new column "TravelTime" to capture the number of minutes it takes to drive from point A to point B (i.e. assuming the entries for "Leave" and "Arrive" are strings)?
Output:
      Leave     Arrive  TravelTime(in minutes) 
   0  18:26     21:16   ????
   1  12:18     14:19   ????
   2  06:23     13:02   ????
   3  15:52     03:14   ????
 
     
    