📜  将摄氏温度转换为华氏温度的Python程序

📅  最后修改于: 2020-09-20 16:28:43             🧑  作者: Mango

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

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

celsius * 1.8 = fahrenheit - 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