Linear Search

What is Linear Search? It is the most simplest searching algorithm. The strategy is to simply compare the target element (i.e. the element is to search) with each and every element of the array or list. In simple words, this strategy is what a layman could think! [Read More]

Write your first program

In this tutorial we focus on to write our first python program.At first open the IDLE or python interpreter then simple write the below code and see the magic … [Read More]