Nest all content into snippets
This commit is contained in:
22
snippets/python/s/km-to-miles.md
Normal file
22
snippets/python/s/km-to-miles.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Km to miles
|
||||
type: snippet
|
||||
language: python
|
||||
tags: [math]
|
||||
unlisted: true
|
||||
cover: interior-5
|
||||
dateModified: 2021-01-04T12:47:04+02:00
|
||||
---
|
||||
|
||||
Converts kilometers to miles.
|
||||
|
||||
- Follows the conversion formula `mi = km * 0.621371`.
|
||||
|
||||
```py
|
||||
def km_to_miles(km):
|
||||
return km * 0.621371
|
||||
```
|
||||
|
||||
```py
|
||||
km_to_miles(8.1) # 5.0331051
|
||||
```
|
||||
Reference in New Issue
Block a user