python华氏度摄氏度温度转换
时间: 2023-09-26 11:02:39 浏览: 198
Python提供了很方便的方式来进行华氏度和摄氏度之间的温度转换。我们可以使用以下公式进行转换:
摄氏度 = (华氏度 - 32) * 5/9
华氏度 = 摄氏度 * 9/5 + 32
为了实现这个功能,我们可以写一个函数,接收一个温度和单位作为参数,并返回转换后的温度。以下是实现的示例代码:
def temperature_convert(temp, unit):
if unit == "F":
celsius = (temp - 32) * 5/9
return celsius
elif unit == "C":
fahrenheit = temp * 9/5 + 32
return fahrenheit
else:
return "Invalid unit"
# 华氏度转摄氏度
fahrenheit_temp = 77
celsius_temp = temperature_convert(fahrenheit_temp, "F")
print(f"{fahrenheit_temp}华氏度转换为摄氏度为{celsius_temp}℃")
# 摄氏度转华氏度
celsius_temp = 25
fahrenheit_temp = temperature_convert(celsius_temp, "C")
print(f"{celsius_temp}摄氏度转换为华氏度为{fahrenheit_temp}℉")
在上面的代码中,我们定义了一个temperature_convert函数,它接收两个参数:temp表示温度值,unit表示温度单位。
然后,我们根据unit的取值来判断是进行华氏度到摄氏度的转换,还是进行摄氏度到华氏度的转换。
最后,我们使用了print函数打印转换后的温度值。
在运行代码时,我们可以根据需求传入不同的温度和单位进行转换,得到相应的结果。
阅读全文