Skip to content

RedEdge967/km-miles-km

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

km-to-miles

  • These two little python programs can convert kilometers to miles and miles to kilometers

Needed

  • Python3
  • or a online python compiler with the output

How to?

  • First download the .py files from releases and run them with python3 and enter the kilometers or miles.
  • Or copy the codes and paste on a online compiler and run it.

miles to kilometers

# Taking kilometers input from the user
kilometers = float(input("Enter value in miles: "))

# conversion factor
conv_fac = 0.621371

# calculate miles
miles = kilometers / conv_fac
print('%0.2f miles is equal to %0.2f kilometers' %(kilometers,miles))

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))

Don't forget to give a star 🌟 to my repo..

About

This two python programs can convert km to miles and miles to km

Topics

Resources

Stars

Watchers

Forks

Languages