Files
30-seconds-of-code/python/snippets/celsius-to-fahrenheit.md
2023-05-01 22:43:50 +03:00

22 lines
348 B
Markdown

---
title: Celsius to Fahrenheit
type: snippet
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
```