编写一个python,转化华氏度和摄氏度
时间: 2024-05-15 18:15:55 浏览: 150
F_to_C:华氏度到摄氏温度
5星 · 资源好评率100%
```
# 定义一个函数,将华氏度转化为摄氏度
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) * 5 / 9
return celsius
# 定义一个函数,将摄氏度转化为华氏度
def celsius_to_fahrenheit(celsius):
fahrenheit = celsius * 9 / 5 + 32
return fahrenheit
# 示例
print(fahrenheit_to_celsius(32)) # 输出0.0
print(celsius_to_fahrenheit(0)) # 输出32.0
```
阅读全文