python编写函数把华氏度转换为摄氏度
时间: 2023-06-25 08:04:31 浏览: 88
利用Python轻松实现“华氏”和“摄氏”温度的转换
可以使用下面的函数来将华氏度转换为摄氏度:
```python
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) * 5 / 9
return celsius
```
函数接受一个华氏温度值作为参数,并返回相应的摄氏温度值。可以这样使用该函数:
```python
>>> fahrenheit_to_celsius(32)
0.0
>>> fahrenheit_to_celsius(68)
20.0
>>> fahrenheit_to_celsius(100)
37.77777777777778
```
这将分别返回32°F,68°F和100°F的摄氏温度值。
阅读全文