Q:

Python program to find sum of two numbers

belongs to collection: Python basic programs

0

Given two integer numbers and we have to find their sum in Python.

In the given below example, we have two variables num1 and num2 and assigning them with the value 10 and 20, finding and printing the sum of the numbers. Later we are inputting two numbers from the input and assigning them num1 and num2.

Note: While inputting numbers from using input() function, we get string value, to convert string value to an integer value – we need to convert them into integer. To convert string to an integer, use int() function.

ASCII value of character in Python

In python, to get an ASCII code of a character, we use ord() function. ord() accepts a character and returns the ASCII value of it.

Example code:

    num1 = input("Enter first  number: ")
    num2 = input("Enter second number: ")
    sum = int(num1) + int(num2)

Example:

    Input:
    num1 = 10
    num2 = 20

    Finding sum:
    sum = num1 + num2

    Output:
    30

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Python code to find sum of two numbers

# python program to find sum of 
# two numbers

num1 = 10
num2 = 20

# finding sum 
sum = num1 + num2

# printing sum
print("sum of ", num1, " and ", num2, " is = ", sum)

# taking input from user
num1 = input("Enter first  number: ")
num2 = input("Enter second number: ")

# finding sum 
sum = int(num1) + int(num2)

# printing sum
print("sum of ", num1, " and ", num2, " is = ", sum)

Output

sum of  10  and  20  is =  30
Enter first  number: 100
Enter second number: 200
sum of  100  and  200  is =  300

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python basic programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Python program to find addition of two numbers (4 ... >>
<< Python | Input two integers and find their additio...