Python Linear Search

Here you will get program for linear search in python.

Linear search is one of the simplest searching algorithm in which targeted item in sequentially matched with each item in a list. It is worst searching algorithm with worst case time complexity O (n).

Below is its implementation.

Linear Search

Also Read: Python Binary Search

Program for Python Linear Search

Output

list of items is [5, 7, 10, 12, 15]
enter item to search:12
item found at position: 4

Comment below if you have any queries regarding python linear search program.

8 thoughts on “Python Linear Search”

  1. How can we do this by getting the list values from user input and searching for a number from the list which the user entered and displaying it

  2. ALEXANDER JAFFERSON

    Hey aasif u can use a for loop to get the inputs
    Items=[]
    a=int(input(‘enter no of elements’)
    for i in range(0,a):
    c=int(input(‘enter the elements’))
    items.append(c)

Leave a Comment

Your email address will not be published. Required fields are marked *