总python写一个华氏温度转化为摄氏温度的程序
时间: 2023-05-21 09:03:05 浏览: 75
利用python实现华氏温度和摄氏温度的转换
以下是将华氏温度转换为摄氏温度的 Python 代码:
```python
fahrenheit = float(input("请输入华氏温度: "))
celsius = (fahrenheit - 32) * 5/9
print("摄氏温度为:", celsius)
```
你可以输入一个华氏温度,程序将输出对应的摄氏温度。
阅读全文