Answer
One example of Python code that would produce cleaner output is:
$print$('Your speed is ' + str(mph) + ' mph')
. . .
$print$('Your total elapsed time is ' + str(elapsed_minutes) +
' minutes, ' + str(elapsed_seconds) + ' seconds')
Work Step by Step
One example of Python code that would produce cleaner output is:
$print$('Your speed is ' + str(mph) + ' mph')
. . .
$print$('Your total elapsed time is ' + str(elapsed_minutes) +
' minutes, ' + str(elapsed_seconds) + ' seconds')