In this example, we’ll learn to convert kilometers to miles and display it.
To understand this example, you should have the knowledge of the following Python programming topics:
Example: Kilometers to Miles
# Taking kilometers input from the user kilometers = float(input("Enter value in kilometers: ")) # conversion factor conv_fac = 0.621371 # calculate miles miles = kilometers * conv_fac print('%0.2f kilometers is equal to %0.2f miles' %(kilometers,miles))
Output
Enter value in kilometers: 3.5 3.50 kilometers is equal to 2.17 miles
Here, the user is asked to enter kilometers. This value is stored in the kilometers variable.
Since 1 kilometer is equal to 0.621371 miles, we can get the equivalent miles by multiplying kilometers with this factor.
Your turn: Modify the above program to convert miles to kilometers using the following formula and run it.
kilometers = miles / conv_fac
Related posts:
Python Deep Learning Cookbook - Indra den Bakker
Python Program to Create a Long Multiline String
Python break and continue
Python String splitlines()
Python Program to Merge Two Dictionaries
Python del Statement
Python String rfind()
Python Program to Find Numbers Divisible by Another Number
Python any()
Python String lstrip()
Python set()
Python for Loop
Python Program to Find Factorial of Number Using Recursion
Python Multiple Inheritance
Machine Learning with Python for everyone - Mark E.Fenner
Python Program to Calculate the Area of a Triangle
Python Program to Swap Two Variables
Python Functions
Python Sets
Python Dictionary setdefault()
Python Dictionary keys()
Python Program to Sort a Dictionary by Value
Python Machine Learning Third Edition - Sebastian Raschka & Vahid Mirjalili
Python staticmethod()
Machine Learning Applications Using Python - Cases studies form Healthcare, Retail, and Finance - Pu...
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python Set pop()
Python super()
Python enumerate()
Python @property decorator
Python Set update()
Python String capitalize()