Python basic,7. Write a Python program to enter temperature in Celsius and convert it into Fahrenheit.
7. Write a Python program to enter temperature in Celsius and convert it into Fahrenheit. Cel = int(input("Enter the temperature in Celsius :-")) fah = (Cel *9/5)+32 print("The Temperature in Fahrenheit is :- ",fah) Output :-