Accessing Nested List using for Loop in Python (Hindi)

  Рет қаралды 17,209

Geeky Shows

Geeky Shows

Күн бұрын

Пікірлер: 24
@Rudra_Narayan_Tiwari
@Rudra_Narayan_Tiwari Жыл бұрын
#Best Python Playlist om KZbin even better than official docs to be honest!!!!
@shantanusingh6366
@shantanusingh6366 Жыл бұрын
a = [1, 2, 3, [4, 5, 6], [7]] n = len(a) for i in range(n): if type(a[i]) is list: m = len(a[i]) for j in range(m): print("a[",i,"]","[", j,"]", ">", a[i][j]) else: print(i, ">", a[i]) Thanku for for the video.
@Rudra_Narayan_Tiwari
@Rudra_Narayan_Tiwari Жыл бұрын
Thank you for teaching us so perfectly Gurujiii
@AnkaheAlfas
@AnkaheAlfas 3 жыл бұрын
Great explanation 👍
@learningneverends2831
@learningneverends2831 2 жыл бұрын
Bht hard🌟🔥
@skyboom8306
@skyboom8306 3 жыл бұрын
Bhot best pdate ho sir app
@rohittechlife6415
@rohittechlife6415 4 жыл бұрын
Great video
@DhavalShah.24
@DhavalShah.24 6 ай бұрын
I have a easy way to access nested list: Here's how u can access nested list easily: For ele in a: If isinstance(ele, list) : For j in ele: Print (j) Else: Print (ele)
@SunnySharma-dc2nh
@SunnySharma-dc2nh 4 жыл бұрын
can you please tell me what is the need of ( if len(a[i]) > 1: ) in line 8 ?? i mean, without mentioning about length also we can execute the code.
@shinchan5173
@shinchan5173 4 жыл бұрын
@ashish srivastava kyu ek element ki bhi toh list hoti hai???
@wasifshahzad5001
@wasifshahzad5001 2 жыл бұрын
no need ig cuz a list can be of 1 element too, it isn't necesssary
@azadjain8534
@azadjain8534 4 жыл бұрын
Thanks for explanation. How to get the output in list form ?
@nupurjain8660
@nupurjain8660 4 жыл бұрын
Thank you
@mohitjoshi316a
@mohitjoshi316a 4 жыл бұрын
simply write print(a)
@indo-anime3810
@indo-anime3810 6 ай бұрын
best video bro . thanks for explanation.😁😁😁
@shubhamkumarbatham4370
@shubhamkumarbatham4370 4 жыл бұрын
thanks sir
@maheshbhadane8533
@maheshbhadane8533 3 жыл бұрын
could you please give solution on above problem, need to extract list only which have both data type int and str from below nested list . l = [[10,20,30],['abc', 'efg', 'hij'],[40,50, 'xyz', 'lmn'],[1,2,3]] out put = [40,50, 'xyz', 'lmn']
@hibamariam4405
@hibamariam4405 2 жыл бұрын
l = [[10,20,30],['abc', 'efg', 'hij'],[40,50, 'xyz', 'lmn'],[1,2,3]] for i in range(len(l)): alpha=0;num=0 for j in range(len(l[i])): if type(l[i][j]) is str: alpha+=1 elif type(l[i][j]) is int: num+=1 if num!=0 and alpha!=0: print(l[i]) break
@shalinigilani739
@shalinigilani739 2 жыл бұрын
why a[0]=10 is not a list ?
@shortviral1514
@shortviral1514 3 жыл бұрын
why 10 is not list?
@shortviral1514
@shortviral1514 3 жыл бұрын
why a[0] = 10 is a not list?
@nimezshedits9073
@nimezshedits9073 3 жыл бұрын
of which part you are talking about of the video
@rishabhyadav187
@rishabhyadav187 2 жыл бұрын
bro just simplify it. on index number 0 of list a we have 10 and the type of 10 is an integer
@letsenjoythetimebylearning4262
@letsenjoythetimebylearning4262 5 жыл бұрын
I m here dada
Accessing Nested List using while Loop in Python (Hindi)
14:00
Geeky Shows
Рет қаралды 10 М.
List in Python (Hindi)
17:13
Geeky Shows
Рет қаралды 47 М.
Smart Sigma Kid #funny #sigma
00:33
CRAZY GREAPA
Рет қаралды 37 МЛН
10 Python Comprehensions You SHOULD Be Using
21:35
Tech With Tim
Рет қаралды 160 М.
Nested List in Python (Hindi)
24:51
Geeky Shows
Рет қаралды 25 М.
Solve any Star Pattern program in Python
18:44
Simply Coding
Рет қаралды 1 МЛН
Accessing List using for Loop in Python (Hindi)
13:49
Geeky Shows
Рет қаралды 29 М.
Slicing Nested List in Python (Hindi)
25:00
Geeky Shows
Рет қаралды 12 М.
Nested Dictionaries in Python | Python Tutorials for Beginners #lec69
22:33
Jenny's Lectures CS IT
Рет қаралды 43 М.