Python Code : Convert KM/H to MPH - PythonForBeginners.com

You are here: Home / Code Snippets / Python Code : 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 Python Training

Course: Python 3 For Beginners

Over 15 hours of video content with guided instruction for beginners. Learn how to create real world applications and master the basics.