温度转换python代码
时间: 2023-05-30 09:06:09 浏览: 143
Python温度转换
以下是将华氏温度转换为摄氏温度的Python代码:
```python
fahrenheit = float(input("请输入华氏温度:"))
celsius = (fahrenheit - 32) * 5 / 9
print("摄氏温度为:", celsius)
```
以下是将摄氏温度转换为华氏温度的Python代码:
```python
celsius = float(input("请输入摄氏温度:"))
fahrenheit = celsius * 9 / 5 + 32
print("华氏温度为:", fahrenheit)
```
阅读全文