写一个摄氏度和华氏度相互转换的Python代码
时间: 2024-10-13 08:11:21 浏览: 125
利用Python轻松实现“华氏”和“摄氏”温度的转换
当然可以。在Python中,我们可以编写一个简单的函数来进行摄氏度到华氏度(Celsius to Fahrenheit, C° to °F)以及华氏度到摄氏度(Fahrenheit to Celsius, °F to C°)的转换。以下是两个函数的例子:
```python
def celsius_to_fahrenheit(celsius):
"""将摄氏温度转换为华氏温度"""
return (celsius * 9/5) + 32
def fahrenheit_to_celsius(fahrenheit):
"""将华氏温度转换为摄氏温度"""
return (fahrenheit - 32) * 5/9
# 示例用法
celsius_temp = 20
fahrenheit_temp = celsius_to_fahrenheit(celsius_temp)
print(f"{celsius_temp}℃等于{fahrenheit_temp}℉")
fahrenheit_temp = 68
celsius_temp = fahrenheit_to_celsius(fahrenheit_temp)
print(f"{fahrenheit_temp}℉等于{celsius_temp}℃")
```
阅读全文