Python将摄氏度转换为华氏度的代码

2022-05-03 00:00:00 代码 转换为 摄氏度

在此程序中,您将学习将Celsuis转换为华氏度并显示它。

在下面的程序中,我们以摄氏度为单位的温度将其转换为华氏度。它们通过以下公式相关:

fahrenheit = celsius * 1.8 + 32
源码

# Python Program to convert temperature in celsius to fahrenheit

# change this value for a different result
celsius = 37.5

# calculate fahrenheit
fahrenheit = (celsius * 1.8) + 32
print('%0.1f degree Celsius is equal to %0.1f degree Fahrenheit' %(celsius,fahrenheit))

输出

37.5 degree Celsius is equal to 99.5 degree Fahrenheit

可以再创建一个Python程序,使用以下公式自行将华氏度转换为摄氏度

celsius = (fahrenheit - 32) / 1.8

相关文章