Write a function to calculate speed given distance covered and time taken
Topic: Write a function to calculate speed given distance covered and time taken
Solution
def calspeed(dist, time): return dist / time
List all Python Programs
Solution
def calspeed(dist, time): return dist / time