Question
Write Python script to enter temperature in degree Celsius and display it into Fahrenheit. The formula to convert from degree Celsius to degree Fahrenheit is:

Answer

The formula to convert from degree Celsius to degree Fahrenheit is: ''' Script to Convert Degree Celsius to Fahrenheit '''
C=eval(input("Enter the Temperature in Celsius"))
F=9/5*C+32
print("Temperature in Fahrenheit ", F)

Need a full question paper?

Generate a complete, print-ready paper with questions like this in minutes — across 16+ boards, with answer keys.

Start Generating Free