Question: Codio challenge question (Python): You are provided with 2 input values which determine the speed of 2 cars. If both cars are travelling at more
Codio challenge question (Python):
You are provided with 2 input values which determine the speed of 2 cars.
If both cars are travelling at more than 70 then output 2 fast cars
If one car only is moving at more than 70, output 1 fast car
Otherwise output no fast cars
# Get our car speeds from the command line import sys speed1 = int(sys.argv[1]) speed2 = int(sys.argv[2])
# Write your code below
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
