Files
30-seconds-of-code/snippets/celsius_to_fahrenheit.md
2021-01-04 12:47:04 +02:00

19 lines
301 B
Markdown

---
title: celsius_to_fahrenheit
tags: math,beginner
unlisted: true
---
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
```