Tuesday, November 30, 2021

Addition of Two Numbers in Python in Linux

 A simple program that I wrote using Python programming language that will ask the user to give two numbers and then the program will compute the sum of two numbers and display the results 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.

 


 

Program Listing

# addition.py
# Addition 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("\tAddition of Two Numbers in Python in Linux")
print("\n")
num1 = int(input("Enter First Number   : "))
num2 = int(input("Enter Second Number  : "))

# Adding two numbers
sum = (num1 + num2)
 
# printing values
print("\n")
print("\tSum of {0} and {1} is {2}" .format(num1, num2, sum))

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


No comments:

Post a Comment