python华氏度与摄氏度的转换,转化公式如下,c表示摄氏度,f表示华氏度:
时间: 2023-10-31 12:05:36 浏览: 270
F_to_C:华氏度到摄氏温度
5星 · 资源好评率100%
华氏度与摄氏度之间的转换公式如下:
摄氏度 = (华氏度 - 32) * 5/9
华氏度 = 摄氏度 * 9/5 + 32
以下是Python中实现华氏度与摄氏度之间的转换的代码示例:
```python
# 将摄氏度转换为华氏度
def celsius_to_fahrenheit(celsius):
fahrenheit = celsius * 9/5 + 32
return fahrenheit
# 将华氏度转换为摄氏度
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) * 5/9
return celsius
```
使用示例:
```python
celsius = 20
fahrenheit = celsius_to_fahrenheit(celsius)
print(f"{celsius} 摄氏度 = {fahrenheit} 华氏度")
fahrenheit = 68
celsius = fahrenheit_to_celsius(fahrenheit)
print(f"{fahrenheit} 华氏度 = {celsius} 摄氏度")
```
输出结果:
```
20 摄氏度 = 68.0 华氏度
68 华氏度 = 20.0 摄氏度
```
阅读全文