Nest all content into snippets
This commit is contained in:
22
snippets/python/s/celsius-to-fahrenheit.md
Normal file
22
snippets/python/s/celsius-to-fahrenheit.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Celsius to Fahrenheit
|
||||
type: snippet
|
||||
language: python
|
||||
tags: [math]
|
||||
unlisted: true
|
||||
cover: last-light
|
||||
dateModified: 2021-01-04T12:47:04+02:00
|
||||
---
|
||||
|
||||
Converts Celsius to Fahrenheit.
|
||||
|
||||
- Follow the conversion formula `F = 1.8 * C + 32`.
|
||||
|
||||
```py
|
||||
def celsius_to_fahrenheit(degrees):
|
||||
return ((degrees * 1.8) + 32)
|
||||
```
|
||||
|
||||
```py
|
||||
celsius_to_fahrenheit(180) # 356.0
|
||||
```
|
||||
Reference in New Issue
Block a user