#Best Python Playlist om KZbin even better than official docs to be honest!!!!
@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 Жыл бұрын
Thank you for teaching us so perfectly Gurujiii
@AnkaheAlfas3 жыл бұрын
Great explanation 👍
@learningneverends28312 жыл бұрын
Bht hard🌟🔥
@skyboom83063 жыл бұрын
Bhot best pdate ho sir app
@rohittechlife64154 жыл бұрын
Great video
@DhavalShah.246 ай бұрын
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-dc2nh4 жыл бұрын
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.
@shinchan51734 жыл бұрын
@ashish srivastava kyu ek element ki bhi toh list hoti hai???
@wasifshahzad50012 жыл бұрын
no need ig cuz a list can be of 1 element too, it isn't necesssary
@azadjain85344 жыл бұрын
Thanks for explanation. How to get the output in list form ?
@nupurjain86604 жыл бұрын
Thank you
@mohitjoshi316a4 жыл бұрын
simply write print(a)
@indo-anime38106 ай бұрын
best video bro . thanks for explanation.😁😁😁
@shubhamkumarbatham43704 жыл бұрын
thanks sir
@maheshbhadane85333 жыл бұрын
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']
@hibamariam44052 жыл бұрын
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
@shalinigilani7392 жыл бұрын
why a[0]=10 is not a list ?
@shortviral15143 жыл бұрын
why 10 is not list?
@shortviral15143 жыл бұрын
why a[0] = 10 is a not list?
@nimezshedits90733 жыл бұрын
of which part you are talking about of the video
@rishabhyadav1872 жыл бұрын
bro just simplify it. on index number 0 of list a we have 10 and the type of 10 is an integer