+ 1
How to solve celcius to Fahrenheit project in python
4 Réponses
+ 1
celsius = int(input())
def conv():
Celsius = (Fahrenheit - 32) * 5.0/9.0
celsius = conv(fahrenheit)
print()
Correct answer 😇👍🏻
+ 1
Thanks 👍
0
Why it is not working
Celsius = int(input())
def conv():
Celsius = (Fahrenheit-32) * 5.0/9.0
Celsius = conv(Fahrenheit)
print()
0
celsius = int(input())
def conv():
#your code goes here
fahrenheit = 9/5 * celsius + 32
return fahrenheit
print(conv())