PHP前端开发

用python写温度转换

百变鹏仔 3小时前 #Python
文章标签 温度

Python写摄氏温度转换为华氏温度:

celsius = float(input('输入摄氏温度: ')) # 计算华氏温度fahrenheit = (celsius * 1.8) + 32print('%0.1f 摄氏温度转为华氏温度为 %0.1f ' %(celsius,fahrenheit))

使用公式:

fahrenheit = (celsius * 1.8) + 32

Python写华氏温度转换为摄氏温度:

fahrenheit = float(input('输入华氏温度: ')) # 计算摄氏温度celsius = (fahrenheit - 32) / 1.8print('%0.1f 华氏温度转为摄氏温度为 %0.1f ' %(fahrenheit,celsius))

公式:

立即学习“Python免费学习笔记(深入)”;

celsius = (fahrenheit - 32) / 1.8