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

19 lines
301 B
Markdown

---
title: fahrenheit_to_celsius
tags: math,beginner
unlisted: true
---
Converts Fahrenheit to Celsius.
- Follow the conversion formula `C = (F - 32) * 5/9`.
```py
def fahrenheit_to_celsius(degrees):
return ((degrees - 32) * 5/9)
```
```py
fahrenheit_to_celsius(77) # 25.0
```