I am doing Celsius and Fahrenheit Temperature Calculator
In Python, I completely conceive
I have Python 3.3
So, I made this function to calculate the Farenheit value for Celsius value
def C(): print('Enter a temperature:') Fvalue = input() print(int(Fvalue) - int(32) * int((5/9)))
I run it and it just prints the Fvalue value itself, it does not perform math operations
Hope you help me guys.
source share