Temperature Conversion
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.
[...] 4. Python – http://kenno.wordpress.com/2006/04/06/temperature-conversion/ [...]
7 ways to build a temperature converter | Temperature converter, fahrenheit to celsius, celsius to fahrenheit
December 13, 2009 at 6:21 pm
Awesome Thanks! I’m taking a course in basic python and this helped me out a lot for my homework.
pr0gambl3r
August 19, 2011 at 1:43 am