📜  python代码示例中的摄氏度到华氏度

📅  最后修改于: 2022-03-11 14:45:56.888000             🧑  作者: Mango

代码示例3
def farh(cel):
    return (cel *(9/5)) + 32
  while True:
c = int(input("Enter celcius to convert in farhrenhite :"))
f = farh(c)
print("Fahreheit Temperature is " + str(f))