can you please help me figure out why this isnt working thanks
# convert.py
# this program is used to convert Celsius temps to Fahrenheit
# By: James Michael Johnson
Def main ():
Celsius = float (input ("What is the Celsius temperature? "))
Fahrenheit = 9.0 / 5.0 * Celsius + 32
Print ("The temperature is ", Fahrenheit, " degrees Fahrenheit.")
Main ()
# convert.py
# this program is used to convert Celsius temps to Fahrenheit
# By: James Michael Johnson
Def main ():
Celsius = float (input ("What is the Celsius temperature? "))
Fahrenheit = 9.0 / 5.0 * Celsius + 32
Print ("The temperature is ", Fahrenheit, " degrees Fahrenheit.")
Main ()
_______________________________________________
Tutor maillist - [email protected]
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor