F.E. PPS Unit 1 Practical 6 solution
Practical 6: Program to Convert Degree Fahrenheit into Degree Celsius Problem Statement: Write a Python program that converts a temperature from Fahrenheit to Celsius. The formula to convert Fahrenheit to Celsius is: C=(F-32)*5/9 Where: CC is the temperature in Celsius FF is the temperature in Fahrenheit Solution Code: # Program to convert Fahrenheit to Celsius …