Computer Science, asked by aishwaryasingh7722, 2 months ago

write a PYTHON program to convert Celsius measurement to Fahrenheit (CLASS 9 LEVEL)​

Answers

Answered by rawalkinjal337
5

Answer:

  • Python Program to Convert Celsius To Fahrenheit and Vice Versa
  • Celsius = (Fahrenheit – 32) * 5/9 Fahrenheit = (Celsius * 9/5) + 32.
  • celsius = float(input("Enter temperature in celsius: ")) fahrenheit = (celsius * 9/5) + 32 print('%.2f Celsius is: %0.2f Fahrenheit' %(celsius, fahrenheit))

Explanation:

I Hope Its Helpful to U dear

Similar questions