用python实现摄氏度与华氏度的转换
时间: 2024-05-07 18:19:14 浏览: 108
利用Python轻松实现“华氏”和“摄氏”温度的转换
以下是Python实现摄氏度与华氏度的转换的代码示例:
```python
# 摄氏度转华氏度
def celsius_to_fahrenheit(celsius):
return (celsius * 1.8) + 32
# 华氏度转摄氏度
def fahrenheit_to_celsius(fahrenheit):
return (fahrenheit - 32) / 1.8
# 示例
celsius = 28
fahrenheit = celsius_to_fahrenheit(celsius)
print(f"{celsius} 摄氏度 = {fahrenheit} 华氏度")
fahrenheit = 82.4
celsius = fahrenheit_to_celsius(fahrenheit)
print(f"{fahrenheit} 华氏度 = {celsius} 摄氏度")
```
输出结果:
```
28 摄氏度 = 82.4 华氏度
82.4 华氏度 = 28.000000000000004 摄氏度
```
阅读全文