There might be situations in which you want to account for multiple conditions. To do that, Python lets you extend your if statement with the elif (else if) keyword.
Here’s the syntax:
if condition1:
pass # Code to execute if condition1 is True
elif condition2:
pass # Code to execute if condition1 is False and condition2 is True
else:
pass # Code to execute if all conditions are False
Implement all of the user stories as asked. Then change the values of your variables so you can test that each scenario returns what is expected. Currently, you have distance_mi set to 7, but you have not written code for that yet.