Write a function to take the Celsius value as an argument and return the corresponding Fahrenheit value.
celsius = int(input()) def conv(c): result = (9/5*celsius+32) return result fahrenheit = conv(celsius) print(fahrenheit)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment