homework 4

while True:
  a = input( ' 1: Celsius to Fahrenheit\n2: Fahrenheit to Celsius\n3: Exit\n ' )
   if a == ' 1 ' :
      celsius =float(input( ' Input Celsius: ' ))
      fahrenheit =(celsius*9/5)+32
       print ( ' {:.2f}Celsius to Fahrenheit{:. 2f} ' .format(celsius,fahrenheit))
   elif a == ' 2 ' :
      fahrenheit =float(input( ' Please enter Fahrenheit: ' ))
      celsius =9/5*(f-32 )
       print ( ' {:.2f}Fahrenheit to Celsius:{:.2f} ' .format(fahrehheit,celsius))
   else :
       break :

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324694448&siteId=291194637