Question: Given the following function definition, select the text to replace the ??? def print_speed(???): calculates and prints the speed given dist in meters and time

Given the following function definition, select the text to replace the ??? def print_speed(???): calculates and prints the speed given dist in meters and time in seconds >>> print_speed(50, 10) 5.0 >>> print_speed(2.3, 32) 0.071875 speed = dist/time print(speed, 'm/s') dist: float, time: int dist, time O float, int dist: int, time: int
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
