写一个 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))