Python Program to convert KMH to MPH

Convert KM/H to MPH

This script converts speed from KM/H to MPH, which may be handy for calculating speed limits when driving abroad, especially for UK and US drivers.

The conversion formula for kph to mph is : 1 kilometre = 0.621371192 miles
#!/usr/bin/env python
kmh = int(raw_input("Enter km/h: "))
mph =  0.6214 * kmh
print "Speed:", kmh, "KM/H = ", mph, "MPH"

Recommended Reading On: Python Program to Calculate the Income Tax

Leave a Reply

Your email address will not be published. Required fields are marked *