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
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your 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 ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » 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'.