当前分类:300例题>>正文

Python示例:将摄氏温度转换为华氏温度

来源:互联网   更新时间:2023年6月27日  

Python 示例

写一个 Python示例,把摄氏温度转换成华氏温度。这个 python 示例允许输入摄氏温度,并使用数学公式将其转换为华氏温度。

celsius = float(input("Please Enter the Temperature in Celsius = "))

fahrenheit = (1.8 * celsius) + 32
//fah = ((cel * 9)/5) + 32

print("%.2f Celsius Temperature = %.2f Fahrenheit" %(celsius, fahrenheit))

本文固定链接:https://6yhj.com/leku-p-4511.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 防骗