Write two functions that will convert temperatures
back and forth from the Celsius and Fahrenheit temperature scales (using 
raw_input)
def C_F(x):
    y = (x-32)*(5.0/9)
    print y
def F_C(x):
    y = (x*9.0/5)+32
    print y
I have created the two functions but I don’t know what to do from here.
Can you help?
Thanks





_______________________________________________
Tutor maillist  -  [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to