编写一个python程序,要求他能够将摄氏度转换为华氏度,将华氏度转化为摄氏度
时间: 2023-04-04 08:01:21 浏览: 103
python 将华氏温度转换为摄氏温度 示例
5星 · 资源好评率100%
可以的,以下是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
# 测试
print(celsius_to_fahrenheit(25)) # 应该输出77.
print(fahrenheit_to_celsius(77)) # 应该输出25.
阅读全文