python实现华氏度摄氏度转换
时间: 2023-03-28 16:04:38 浏览: 162
F_to_C:华氏度到摄氏温度
5星 · 资源好评率100%
可以使用以下代码实现华氏度和摄氏度之间的转换:
```python
# 将华氏度转换为摄氏度
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) * 5 / 9
return celsius
# 将摄氏度转换为华氏度
def celsius_to_fahrenheit(celsius):
fahrenheit = celsius * 9 / 5 + 32
return fahrenheit
```
使用以上代码,你可以将华氏度转换为摄氏度,或将摄氏度转换为华氏度。
阅读全文