Update formatting

This commit is contained in:
Isabelle Viktoria Maciohsek
2022-01-30 19:18:14 +02:00
parent c95f39e4ba
commit 2a16eb9892
6 changed files with 10 additions and 10 deletions

View File

@ -8,11 +8,11 @@ lastUpdated: 2021-01-04T12:47:04+02:00
Converts Fahrenheit to Celsius.
- Follow the conversion formula `C = (F - 32) * 5/9`.
- Follow the conversion formula `C = (F - 32) * 5 / 9`.
```py
def fahrenheit_to_celsius(degrees):
return ((degrees - 32) * 5/9)
return ((degrees - 32) * 5 / 9)
```
```py