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"
- How to Use Python to Convert Miles to Kilometers | Python Program to Convert Miles to KM Unit Measurement
- How to get and format the current time in Python
- Python Strings Quotes
Recommended Reading On: Python Program to Calculate the Income Tax