Wednesday, December 29, 2021

Product of Two Numbers in Python in Linux

 A simple program that will ask the user to give two numbers, and then the program will compute the product of the two given numbers using Python programming language in Linux operating system. I am using Linux Mint as my linux distribution in writing this program and sublime as my text editor.

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.


 

Program Listing

# product.py
# Produc of Two Numbers in Python in Linux
# Jake Rodriguez Pomperada, MAED-IT, MIT
# www.jakerpomperada.com and www.jakerpomperada.blogspot.com
# Globe Number : 09173084360
# Bacolod City, Negros Occidental Philippines.

print("\n")
print("\tProduct of Two Numbers in Python in Linux")
print("\n")
num1 = int(input("\tEnter First Number   : "))
num2 = int(input("\tEnter Second Number  : "))

# Multiply two numbers
product = (num1 * num2)

 
# printing values
print("\n")
print("\tThe Product of {0} and {1} is {2}." .format(num1,num2,product))

print("\n")
print("\tEnd of Program")
print("\n")

 

No comments:

Post a Comment