Python Programming To Add Two Numbers

Today I am Writing a blog on the topic “Python 3.11.1 Programming to Add Two Numbers”

Python 3.11.1 is a popular programming language for beginners and experienced programmers. In this blog, I (DDSRY) will explain you, “how to write a program in Python to add two numbers”.

Lets start coding, create a simple program that takes two numbers, take input from the user, adds them together, and displays the sum of it, result. To do this, will make use built-in function “input()” which allows us to take input from the user, and the “+” operator which is used for addition in Python.

Python code:

num1 = int(input(“Enter the first number: “))
num2 = int(input(“Enter the second number: “))
sum = num1 + num2
print(“The sum of”, num1, “and”, num2, “is”, sum)

This code is easy to read and understand, even for someone who is new to programming, all because of python 3.11.1 programming language.

The “input()” function takes the user’s input as a word, sentences, (string), so we use the “int()” function to convert it to an integer, which is the type of datatype that we need to write in our code, mathematical operations.

Sum of the two numbers is calculated using the plus “+” operator and get stored in the variable “sum”. Finally, the output (result) of our code is displayed using the “print()” function by python, which use to display text on output screen.


About the author

DDSRY

Hey, DDSRY is a Computer Science Student, Python Programmer, Indian Python Podcaster, and Content Creator.

DDSRY Help Students To Learn Python Programming Language on Social Media.

This Website (ddsry.com) is committed to helping students to Learn Python Programming Language in the easy and best way by DDSRY.

@DDSRY

View all posts