0
Function
What’s wrong with my code? celsius = int(input()) def conv(c): #your code goes here c = celsius fahrenheit = 9/5 * c + 32 my_result = fahrenheit return my_result print(my_result)
2 Réponses
+ 4
you are not calling your function
print(conv(celsius))
+ 3
Thank you so much!! I was stuck for a long time👍