If you get used to read the temperature in Fahrenheit scale like me, you may be confusing to see the temperature in Celsius scale given in weather forcasting on Australian or New Zealand televisions.
So today, I'm gonna show you a small Python program which can be used to convert the temperature scale from Fahrenheit to Celsius. As my Python programming skill is very limited at the moment, the program is going to perform very basic function.
As usual, open your text editor program, copy or type the following code and save it to convertctof.py.
# convertctof.py
# A program to convert the Celcius to Fahrenheit scale
# by: kenno.wordpress.com
def main():
celsius = int(raw_input("What is the Celsius temperature? "))
fahrenheit = 9.0 / 5.0 * celsius + 32
print "The temperature is ", fahrenheit, " degrees Fahrenheit."
main()
Here is an example:
kenno$ python convertctof.py
What is the Celsius temperature? 22
The temparature is 71.6 degrees Fahrenheit.
Pingback: 7 ways to build a temperature converter | Temperature converter, fahrenheit to celsius, celsius to fahrenheit
Awesome Thanks! I’m taking a course in basic python and this helped me out a lot for my homework.
How do you get the program to prompt to ask the Celsius again after it has given the result of the first question?