利用Python程序进行摄氏度和华氏度之间的转 换。 根据华氏和摄氏温度定义,转换公式如下: C = ( F – 32 ) / 1.8 F = C * 1.8 + 32 其中,C表示摄氏温度,F表示华氏温度
时间: 2024-04-08 22:35:34 浏览: 273
利用Python轻松实现“华氏”和“摄氏”温度的转换
可以使用Python编写一个函数来进行摄氏度和华氏度之间的转换。以下是一个示例代码:
```python
def celsius_to_fahrenheit(celsius):
fahrenheit = celsius * 1.8 + 32
return fahrenheit
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) / 1.8
return celsius
# 示例调用
celsius = 25
fahrenheit = celsius_to_fahrenheit(celsius)
print(f"{celsius}摄氏度 = {fahrenheit}华氏度")
fahrenheit = 77
celsius = fahrenheit_to_celsius(fahrenheit)
print(f"{fahrenheit}华氏度 = {celsius}摄氏度")
```
运行以上代码,将会输出:
25摄氏度 = 77.0华氏度
77华氏度 = 25.0摄氏度
你可以根据需要修改输入的摄氏度或华氏度进行转换。
阅读全文