There were different options for testing if people born after 1960 take shorter trips. As we had a relatively sizable dataset (more than 100 rows), we concluded that the One-Sided Two-Sample t-test would be appropriate. Two-Sample t-test is used to test the difference between two population means.
Our reasoning for choosing this parametric test as opposed to a non-parametric test was that our dataset was large enough to make the test robust to non-normality due to the central limit theorem. We explored using Mann Whitney U test (also known as Wilcoxon-Mann Whitney), which required us to change our hypothesis to "the sample distributions are not equal". We decided not to proceed with such test since it would not necessarily provide answers to our initial question (whether younger people make shorter rides on average or not).
We used the SciPy library and it's t-test for the means of two independent samples (scipy.stats.ttest_ind) functions to first calculate the t-statistic and p-value of the two-sided t-test. We got the following results: