Skip to content
This repository was archived by the owner on May 7, 2023. It is now read-only.

Files

Latest commit

 

History

History
21 lines (17 loc) · 309 Bytes

km-to-miles.md

File metadata and controls

21 lines (17 loc) · 309 Bytes
title type tags unlisted cover dateModified
Km to miles
snippet
math
true
interior-5
2021-01-04 12:47:04 +0200

Converts kilometers to miles.

  • Follows the conversion formula mi = km * 0.621371.
def km_to_miles(km):
  return km * 0.621371
km_to_miles(8.1) # 5.0331051