Wednesday, March 2, 2022

Gallons To Liters in Python

 A simple program to ask the user to give value in gallons and it will convert into liters equivalent using Python programming language.

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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

Thank you very much for your support.





Program Listing

# gallons_liters.py
# Jake Rodriguez Pomperada, MAED-IT, MIT
# www.jakerpomperada.blogspot.com and www.jakerpomperada.com
# jakerpomperada@gmail.com
# Barangay Mandalagan, Bacolod City, Negros Occidental Philippines
print("");
print("\tGallons To Liters in Python");
print("");
gallons = float(input("Enter Gallons Value : "))
#Convert gallons to liters
liters = float(gallons * 3.9)
#Display the result
print("");
print("There are " + str(format(liters,'5.2f')) + " Liter(s) in " + str(gallons) + " Gallon(s), ")
print("");
print("End of Program")
print("");

No comments:

Post a Comment