编写一个函数把华氏温度转换为摄氏温度
时间: 2023-09-25 15:15:23 浏览: 319
C语言程序设计-编写自定义函数fun。输入一个华氏温度,要求输出摄氏温度。 公式为 c=5(f-32)/9。
5星 · 资源好评率100%
以下是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
```
阅读全文