Addition with Python

Objectives:

  • How to perform addition in Python?
  • How to do addition in Python?
  • How to add two numbers in Python?
  • How to add numbers in Python?

 

Code:

[sourcecode language=”python”]
x=5
y=3
z = x + y
print(x)
print(y)
print(z)
[/sourcecode]

Please refer above code to add numbers in Python and print their values.

 

Steps to Run the above code:

  • Navigate to the folder/directory where you have saved your python code or file.
  • Here I have considered that python file is saved on “c:\>” and the File name is “Addition.py
  • Just type the following command now to execute the Python program: c:\> python Addition.py

 

Download code:

  • Navigate to GitHub repository and download the code from here: Addition.py

 

We conduct Python Training and Workshop for Corporates and College Students, if interested, please write to us on kloudsancyber@gmail.com

 

Aatul Palandurkar
Life Coach, International Trainer, and Author

https://www.facebook.com/aatulpalandurkar
https://www.instagram.com/aatulpalandurkar/

Share