In this we are going to see a program to Convert Speed from KMPH to MPH in Python Programming Language.
kmph = int(input("Enter The Speed In KMPH : "))
# Formula For Finding MPH
mph = 0.6214 * kmph
print("The Speed In MPH Is : ",mph)
# Coded By Dhiraj Shelke
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP