Python Program to Add Two Numbers

2 min read

Problem Definition

Create a Python program to add two numbers and print the result, taking runtime input from the user.

Solution

  1. Take input from the user save them in variables
  2. Add the numbers and print the result
  3. End

Program

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

print("The Sum is", sum)

Runtime Test Cases

Enter first number: 2
Enter second number: 4
The Sum is 6

Explanation

The input() function takes the input from the user however we need to convert the input to an integer using int() method to perform mathematical operation i.e. addition(+).

This program simply takes two arbitrary inputs from the keyboard store them in two different variables later these numbers are added and stored in another variable sum which at the end gets printed out.

Problem Definition

Create a Python program to add two numbers.

Program

num_1 = 2.5
num_2 = 3.5
sum = num_1 + num_2
print("Sum of {} and {} is {}".format(num_1, num_2,sum))

Output

Sum of 2.5 and 3.5 is 6.0

First, the two numbers are stored in the variables num_1 and num_2, respectively. Addition in Python is done by ( + ) operator, Then the result is saved in the sum variable and printed out using string formatting.

To learn more about string formatting in Python read - How To Use String Formatting In Python

However, the more memory-efficient way to perform an addition in Python is by not using any variables at all in just one line, but it can make the code hard to read.

print(2.5+3.5)

Output

6.0


PROGRAMS

Latest Articles

Latest from djangocentral

Capturing Query Parameters of request.get in Django

In Django, the request object contains a variety of information about the current HTTP request, including the query parameters. Query parameters are a way to pass additional information in the URL and are used to filter or sort data. The request object p…
Read more →

2 min read

Understanding related_name in Django Models

In Django, related_name is an attribute that can be used to specify the name of the reverse relation from the related model back to the model that defines the relation. It is used to specify the name of the attribute that will be used to access the relat…
Read more →

2 min read