Thursday, October 29, 2020

Fahrenheit to Celsius Converter in Python

 

Write a program that will ask the user to input the temperature in Fahrenheit

and then, the program will convert the given temperature into Celsius equivalent.


I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price.


Program Listing


# Jake Rodriguez Pomperada, MAED-IT, MIT
# October 29, 2020
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental
print("@==============================================@")
print("   Fahrenheit to Celsius Converter in Python    ")
print("@==============================================@")
print("");
Fahrenheit = int(input("Enter a temperature in Fahrenheit: "))

Celsius = (Fahrenheit - 32) * 5.0/9.0

print("")
print ("Temperature Value is ", Fahrenheit);
print("")
print("Fahrenheit Equivalent is %.2f" % round(Celsius,2),"\u00b0C")
print("")
print("===== THE END OF PROGRAM =====     ")
print("")

No comments:

Post a Comment