📅  最后修改于: 2022-03-11 14:45:56.888000             🧑  作者: Mango
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))