Depth First Search: Graph Searching Algorithm in Python

Graph Search Problem Many problems in real-life can be easily solved by mapping them to the mathematical structure called graphs. Graph Theory and Computational Theory has led to the solution of interesting problems like Traveling Salesman problem, minimum-flow problem, etc. In this tutorial, we will be studying and solving a very basic problem of graph … Read more

MergeSort: Divide and Conquer Routine for Sorting in Python

In Algorithmic thinking, Divide and Conquer Paradigm is widely applicable to problem solving. As the name says, Divide and Conquer approach works by dividing a large problem recursively into small tractable sub-problems which can be solved with ease and then the solutions are then combined to the actual problem at hand. Enough verbosity, in this … Read more

How to install python (also pyCharm ) in 2020

So now let’s discuss how to install python in windows, Mac, Linux Android and also iOS. So don’t worry, we will cover your every device.   Some points to understand first related to python : There are 2 versions of python mainly used today: python 2 and python 3 I will recommend you to learn … Read more

Introduction to python in 2020

python is a high level, interpreted, general purpose programming language. i have given the introduction of python, the main software build using the Python, the advantages pros using the python, main areas in which Python is used. Difference between the compiler and interpreter language.

simple operation on python:

Simple operation on PYTHON

Generally following operation can be performed by the python:

  1. Addition (+)

  2. Subtraction(-)

  3. Multiplication(*)

  4. Division(/)

  5. Modulus(%)

let study the operation in details:

  1. Addition:

Bascially addition means adding up two number.Following operation can be performed in two manner

  • By adding it directly.

  1. write the two number to be add
  2. output will be given.

so the output will be shown:

  • By writing a code.

  1. open IDLE
  2. click on the file.
  3. click on NEW.
  4. write the required code.
  5. output will b shown.

CODE:

this is the required code

The run the following code:

output:

hence in this way both program can performed.

  2. Subtraction:

In python (-) symbol represent subtraction.

basically subtraction means subtracting two number

this can be performed in two manner

  • by subtracting directly :
  1. first we will open idle
  2. type the number you want to subtract.
  3. finally it will show you the output.

 

  • by writing code
  1. first we will open idle.
  2. then click on file.
  3. click on new file.
  4. type the required code their.
  5. then press RUN
  6. output will be shown.

output:

3. Multiplication:

In python (*) asterisk symbol is used to perform multiplcation.

there are two ways to multiply the number in IDLE software.

  • By multiplying them directly.
  1. first write the number that you have to multiply.
  2. the required output will be shown.

output:

  • By writing code.
  1. Open the IDLE.
  2. click on file.
  3. click on NEW.
  4. write the required code

CODE:

OUTPUT:

4.Division:

In python (/) following symbol is used to perform division.

there are two ways to perform division.

  • By directly dividing the number.
  1. OPen IDLE.
  2. then type the number you want to divide
  3. output will be shown.

  • By writing the code:
  1. Open IDLE.
  2. click on NEW.
  3. type the required code.
  4. the output will be shown.

CODE:

OUTPUT:

 

 

5.MODULUS:

firstly what is modulus is the remainder when in number id divided.

it’s a whole number.

for example

5%2=1

hence 1 is modulus here

In python (%) following symbol is used to do the program.

there are two ways to perform the following function.

  •  By direct method
  • By writing code

 

  1. Direct method :
  • in this method we write the number directly on IDLE screen
  • like given below…

OUTPUT:

 

  1. CODE method:
  • In this method we have to first Open IDLE.
  • Then click on file
  • click NEW
  • write the required code
  • output will be shown.

CODE:

 

 

OUTPUT:

 

 

Read more

Python List Examples – How to Concatenate Two or more Lists in Python

In this post we will see how to merge two or more lists in python – various list examples. Method 1 -Concatenate Two or more Lists in Python Lets take example of two list as follow – List1 = [1,2,3,4,5] List2 = [6,7,8,9] Output after merging two list should be –   CombinedList = [ … Read more

Python Tutorial : Getting started with Python Programming

In this post we will learn about history of Python Language and introduction to Python , way for writing programs  Introduction to Python – History, IDE, Syntax Guido Van Rossum invented the python programming language in 1990’s.it is a high level language for solving problems on modern computer systems. here program can run on any … Read more

%d bloggers like this: