Hello everyone, I am practicing Python by making a small program that converts Farenheight to Celsius and vice versa. This is what I have so far:
http://slexy.org/view/s20JTLkRwQ My output however was not what I was expecting which is, with choosing the number 55 and the Celsius option, "<function Celsius at 0x00BF6FA8>". My questions are, why does " "<function Celsius at" print out when i only expected the hex number to print? Later on I want to change the hex number to a Decimal number and I think I can do that with ord(), but I am still getting a type error saying that ord() expected a string length of 1. Could anyone point me in the direction to finding my mistakes?
I study Gotafu.