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

📅  最后修改于: 2022-05-13 01:55:26.399000             🧑  作者: Mango

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

以摄氏度为单位给出温度。任务是转换华氏刻度中的值并显示它。
例子 :

Input :
37 
Output :
37.00 Celsius is: 98.60 Fahrenheit

Input :
40
Output :
40.00 Celsius is equivalent to: 104.00 Fahrenheit

方法:
取摄氏温度作为用户输入,应用华氏温度与摄氏温度的换算公式,并显示出来。摄氏度和华氏度之间的关系由下式给出: fahrenheit = (celsius*1.8) + 32 下面是实现。

Python3
# Temperature in celsius degree
celsius = 40
 
# Converting the temperature to
# fehrenheit using the above
# mentioned formula
fahrenheit = (celsius * 1.8) + 32
 
# printing the result
print('%.2f Celsius is equivalent to: %.2f Fahrenheit'
      %(celsius, fahrenheit))


输出:

40.00 Celsius is equivalent to: 104.00 Fahrenheit