Computer Science, asked by chauhankhushbu5365, 4 hours ago

program to convert celsius to faranheit nd faranheit to celsius in python??​

Answers

Answered by sanjudnath
18

Answer:

See this example:

celsius = float(input('Enter temperature inCelsius: ')) # calculate temperature inFahrenheit. fahrenheit = (celsius * 1.8) + 32. print('%0.1f Celsius is equal to %0.1f degreeFahrenheit'%(celsius,fahrenheit))

Answered by Anonymous
0

Answer:

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