Write a program which prompts the user for a Celsius temperature, convert the temperature to Fahrenheit, and print out the converted temperature.
temp1 = float(input('Enter temperature in celsius here')) temp2 = 1.8 * temp1 + 32 print(temp2)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment