+ 1
Hello! Please, How do I correct the Variable 'fahrenheit' before assignment? Is anything wrong in my coding?
celsius = int(input(36)) def conv(c): # calculate fahrenheit fahrenheit = (int)(celsius * 9/5) + 32 print(celsius,"Celsius is converted",fahrenheit, "Fahrenheit") fahrenheit = conv(celsius) print(fahrenheit)
1 Resposta
+ 4
Your function is not returning anything