以摄氏度为单位给出温度。任务是转换华氏刻度中的值并显示它。
例子:
Input: 37 Output: 37.00 Celsius is:98.60 Fahrenheit Input: 40 Output: 40.00 Celsius is equivalent to:104.00 Fahrenheit
方法:
取摄氏温度作为用户输入,应用华氏温度与摄氏温度的换算公式,并显示出来。摄氏度和华氏度之间的关系由下式给出:
下面是实现。
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
相关用法
注:本文由纯净天空筛选整理自devanshigupta1304大神的英文原创作品 Python Program to Convert Celsius To Fahrenheit。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。