Python华氏度摄氏度
时间: 2024-04-10 15:26:00 浏览: 171
F_to_C:华氏度到摄氏温度
5星 · 资源好评率100%
华氏度和摄氏度是两种不同的温度单位,用于表示温度的大小。Python提供了一些方法来进行华氏度和摄氏度之间的转换。
要将华氏度转换为摄氏度,可以使用以下公式:
摄氏度 = (华氏度 - 32) * 5/9
要将摄氏度转换为华氏度,可以使用以下公式:
华氏度 = 摄氏度 * 9/5 + 32
下面是一个示例代码,演示如何在Python中进行华氏度和摄氏度之间的转换:
```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
# 将华氏度转换为摄氏度
fahrenheit = 100
celsius = fahrenheit_to_celsius(fahrenheit)
print(f"{fahrenheit}华氏度等于{celsius}摄氏度")
# 将摄氏度转换为华氏度
celsius = 37.8
fahrenheit = celsius_to_fahrenheit(celsius)
print(f"{celsius}摄氏度等于{fahrenheit}华氏度")
```
阅读全文