import time
#this inports time for the sleep command in line number three...
print("This Program is a speed calculator")
#This Program Will take user input as distance and time and gives output as speed
time.sleep(3.5)
#this line adds a puase in the print funtion so the user can readthe line before another comes
distance=input("Enter Distance")
time= input("Enter time")
distance*time

Speed is distance divided by time. You have distance*time which is distance multipled by time.

For example, if I am traveling at 50 mph, I'm traveling at 50 miles per hour ... thats 50 miles divided by one hour.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.