Write a program that prompts the user to enter a numeric temperature value that may be a float. A second prompt should then ask the user to indicate whether the user wants the entered temperature value converted to degrees Celsius or degrees Fahrenheit by entering either an 'F' or a 'C' for a second prompt. For example, if the user enters 212 at the first prompt and the character C for the second prompt you are to convert 212 degrees F to the Celsius equivalent (which would be 100.0). Converted temperatures should be rounded to 1 decimal place. If the user enters 26 at the first prompt and the character F at the second one, then your programs should convert 26 degrees C to the Fahrenheit equivalent (which is 78.8 deg F)
Python program with explainations
Below is the code text so you don't have to type, but make sure to match the text with the image above. It should be like the image in your editor with proper indentation.
temp = float(input("Enter a temperature value to convert: "))
convert = input("Conver to Fahrenheit or Celsius? Enter F or C: ")
if (convert == 'f' or convert == 'F') :
degF = 1.8 * temp + 32
print("\n" + str(round(temp, 1)) + " degrees Celsius = " + str(round(degF, 1)) + " degrees Fahrenheit" )
elif (convert == 'c' or convert == 'C') :
degC = (temp - 32) / 1.8
print("\n" + str(round(temp, 1)) + " degrees Fahrenheit = " + str(round(degC, 1)) + " degrees Celsius" )
else:
print("\nYou did not enter an F or C. Goodbye.")
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images