Advertisement

Add Two Numbers in Python

 In this article i will show you how to add two integers in Python || Code with Abuzar 


Python ?

Python is a advanced programming language Today, python is very easy to use and the syntax of python is easy and the most important part of the python is you can do anything what you want in python.

https://abuzartec.blogspot.com/2021/07/add-two-numbers-in-python.html

So, Let's get started how to add two numbers in Python Program.


Example :

# Add two Numbers in Python 
num1=12
num2=34
sum=num1+num2
print("Answer is {0}".format(sum))

When the above code is compile and Run it , then the output of the program is

 Output :

Answer is 46


Please ! write Comment if you find anything incorrect in this website 

This article is contributed by Mohd Abuzar . If you like code with abuzar or want to contribute with us so mail at-abuzar.abuzar.mohd325@gmail.com

Post a Comment

0 Comments