write a python program to accept the temperature in Celsius from the user and convert it in Fahrenheit
for class 11
Answers
Answered by
1
Answer:
Python program to convert Celsius to Fahrenheit - Javatpoint See this example:
celsius = float(input('Enter temperature in Celsius: ')) # calculate temperature in Fahrenheit. fahrenheit = (celsius * 1.8) + 32. print('%0.1f Celsius is equal to %0.1f degree Fahrenheit'%(celsius,fahrenheit))
Answered by
0
Explanation:
celsius = float(input('Enter temperature in Celsius: ')) # calculate temperature in Fahrenheit. fahrenheit = (celsius * 1.8) + 32. print('%0.1f Celsius is equal to %0.1f degree Fahrenheit'%(celsius,fahrenheit))
Similar questions