How to solve celcius to Fahrenheit project in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to solve celcius to Fahrenheit project in python

13th May 2021, 5:44 PM
Ishika Kansal
4 Answers
+ 1
celsius = int(input()) def conv(): Celsius = (Fahrenheit - 32) * 5.0/9.0 celsius = conv(fahrenheit) print() Correct answer 😇👍🏻
13th May 2021, 5:49 PM
E.SANTHOSH
E.SANTHOSH - avatar
+ 1
Thanks 👍
13th May 2021, 5:49 PM
Ishika Kansal
0
Why it is not working Celsius = int(input()) def conv(): Celsius = (Fahrenheit-32) * 5.0/9.0 Celsius = conv(Fahrenheit) print()
14th May 2021, 6:36 AM
Ishika Kansal
0
celsius = int(input()) def conv(): #your code goes here fahrenheit = 9/5 * celsius + 32 return fahrenheit print(conv())
16th Mar 2022, 2:22 PM
Goodness Ogunlana