Question: In this assignment, you are to write a program that will convert Fahrenheit to Celcius. The formula for this is: C = 5 . 0

In this assignment, you are to write a program that will convert Fahrenheit to Celcius.
The formula for this is: C =5.0/9.0*( F -32).
Your program will do the following:
Ask the user to enter a temperature.
Convert the temperature to a FLOAT type
Convert the temperature to Celcius.
The Following code may be useful. It will read in data from the keyboard and it will convert the number to a FLOAT.
n = input("give me a number
")
print("the value of n is",n)
print("the type of n is", type(n))
print("now it will be a float")
n = float(n)
print("the type of n is", type(n))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!