Posts

Showing posts with the label Write a python programm that convert centigrade to fahrenhiet

Write a python programm that convert centigrade to fahrenhiet

  #Write a python programm that convert centigrade  to #fahrenhiet celcius=int(input( "Enter  temp in celcius" )) fah=(celcius* 1.8 )+ 32 print(fah)