📅  最后修改于: 2020-09-20 16:28:43             🧑  作者: Mango
在下面的程序中,我们以摄氏度为单位将温度转换为华氏度。它们由以下公式关联:
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