Linear Search using Python | Python Tutorial for Beginners 68

preview_player
Показать описание
Python Tutorial to learn Python programming with examples

Editing Monitors :

Follow on Facebook:

Subscribe to our other channel:
Telusko Hindi :

Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
Рекомендации по теме
Комментарии
Автор

list=[4, 3, 12, 34, 56, 77, 89]
n=int(input('enter a number'))
for i in range(len(list)):
if list[i]==n:
print('found at pos', i+1)
break
else:
print('not found')

manikantaperumalla
Автор

Good work please keep uploading we are learning from you both javascript and python

findingyou
Автор

Sir it's love.. ur teaching is love in this quartine.. best use of time

apporvaarya
Автор

Thank you Navin ...you made my day ....you are a champion mate and appreciate the work that is helping thousands ....

vikramrajnampalli
Автор

Good morning sir....sir this is first time I'm commenting on a YouTube channel I have seen you teach better than our college teacher that's reason I'm kindly requesting to make video for students of bsc it regarding their projects for third year please sir show us a path please

alokdubey
Автор

Awesome ...I doesn't hear like this from any people...such nice vedio about linear search 😍😍😍

thamotharanm
Автор

make videos on python DATA STRUCTURE PLEASE SIR(SEARCHING, SORTING, ALGORITHMS)

thedevelopersjourney
Автор

A simpler way to do the search function:

def search(my_list, n):
for i, num in enumerate(my_list):
if num == n:
globals()['position'] = i + 1
return True

Skaxarrat
Автор

Thank you sir for teaching about the search technique

sudhakarverma
Автор

Awesome tutorials. I liked watching tutorials. Planning to watch and learn all :) Again thanks for this wonderful video.

Theknightriders
Автор

Thanks sir for this g8 video, it increases my skill day by day sir I have some doubt that python can help me in framing a audit report, project report and balance sheet framing sorry sir for asking this question again and again but its stuck in my mind if you clear my doubts than I feel more focused towards the python
Thanks for once again for this best python video series and forgive me if I write something wrong

sumitgupta-wfdb
Автор

Sir it is a very nice one..I like your way of teaching method...If you can give more videos on data structure using python then it is very much helpful for us ...

swaroopkalyan
Автор

l=[1, 2, 3, 4, 5]
x=int(input("enter number to search in", l))
i=flag=0
while i<len(l):
if l[i]==x:
flag=1
break
i=i+1
if flag==1:
print("number found at index", i+1)
else:
print("not found")

SinghUjjwalKumar
Автор

Sir....Thank you so much for your python videos ;) you are the best..We love you sir

saranya
Автор

Thank you Navin, could you please make a video on any live project.... example .. comparison in two excel file data

AmitSingh-erlk
Автор

#simplestCode
list, key=[1, 2, 3, 4, 5], 3
if key in list:
print("found at index", list.index(key))
else:
print("not found")

BoomcoreIsLive
Автор

Thank you, that was really helpful! :)

dmalqahtani
Автор

Good Evening, Sir!
I found this amazing video which cleared all my doubts.
You just didn't sound like a Telugu guy.
Thank you so much, Sir:)

rishithareddy
Автор

Sir please don't quit is very good but we need your videos on python

PhoenixRisingFromAshes
Автор

Telusko="best thing ever taught of"
thank you sir i appreciate you hard work

ashu