How to solve 40 code project?(Python) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to solve 40 code project?(Python)

I don't know. Someone please help me...

23rd Feb 2022, 7:35 AM
Chris
2 Answers
+ 6
What have you tried already? Attach a "code bit" with the plus icon please. Is 40: "You are making a Celsius to Fahrenheit converter. Write a function to take the Celsius value as an argument and return the corresponding Fahrenheit value. Sample Input 36 Sample Output 96.8"? https://www.sololearn.com/discuss/333866/?ref=app
23rd Feb 2022, 7:40 AM
HungryTradie
HungryTradie - avatar
+ 4
You are making a Celsius to Fahrenheit converter. Write a function to take the Celsius value as an argument and return the corresponding Fahrenheit value. Sample Input 36 Sample Output 96.8 // Hint: take input as a float (say "a") multiply it by 9/5 or 1.8 (use '*') add 32 to it (use '+') print it
23rd Feb 2022, 7:55 AM
NEZ
NEZ - avatar