Question: Codio Challenge Question (Python) You are provided with 2 input values which determine the speed of 2 cars. If either car is travelling at more

Codio Challenge Question (Python)

You are provided with 2 input values which determine the speed of 2 cars.

If either car is travelling at more than 70 then output fast cars. Otherwise output 'ok.

# 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!