top of page

Python Program to add Two and Three numbers

Updated: May 21, 2021


Python Program to add two numbers

Program:

num1 = int (input(" Please Enter the First Number: ")) num2 = int (input(" Please Enter the second number: ")) sum = num1+num2 print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))


Output:

Please Enter the First Number: 3 Please Enter the second number: 5 The sum of 3 and 5 is 8

Python Program to add three numbers

Program:

a = int (input(" Please Enter the First Number: ")) b = int (input(" Please Enter the second number: "))

c = int (input(" Please Enter the third number: ")) sum = a+b+c print('The sum of three numbers is ",sum)


Output:

Please Enter the First Number: 3 Please Enter the second number: 5

Please Enter the third number: 2 The sum of three numbers is 10

Python Program to add Two and Three numbers Video by Rajesh Sir





77 views0 comments

Recent Posts

See All

Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument. This program is most for O Level Practical Exam so read it care

This program is most for O Level Practical Exam so read it carefully. Program: import numpy as np x = np.array([1,2,3,4,5,7,2,1,1,1,8,9,1]) print(x) print("most frequent value in the list:") print(np.

bottom of page