print("It is very much possible") example1 = [10,34,90,['Mohan','Shyam','Ram'],89] print(len(example1)) print(example1[3][2])
@icedragonmaster87master26 Жыл бұрын
This lady is amazing, i was struggling with lists for months and this amazing lady, helps break it down and helped me understand it in minutes thank you so much
concise and clear. Straight to the point. Thanks for the good work done.
@devSackey Жыл бұрын
Length of list2 Print(len(list2)) #output 5 Print(list2[3][2]) #output ram thanks so much
@aishwaryagandhi1878 Жыл бұрын
Yes, list2 is possible. *Input* list2=[10,34,90,["Mohan","Shyam","Ram"],89] print(list2[3][2]) *Output* Ram
@chandukilari6370 Жыл бұрын
print (list2[3] [-1] )
@quiteintresting1916 Жыл бұрын
Hey Jenny...i was looking for some sorting methods... Found your channel... You are a dam good explainer. I am getting into it... And thanks
@annoyingprecision2487 Жыл бұрын
You're a great teacher. Liked and subscribed. Thank you.
@emiraelDev Жыл бұрын
Good evening ma!! I really appreciate effort and I must say I have learnt a lot from you. Ma, can you please upload like 5-7(including coding exercise)lectures a day so we can keep up to the pace ma🙏🏾
@s4RthAK_M4tHuRАй бұрын
Timestamps ------- 00:01 - Nested list in Python allows creating lists within a list. 01:22 - Nested lists in Python allow lists to be stored within a list. 02:54 - Accessing elements in a nested list in Python 04:17 - Nested list in Python allows for slicing and accessing elements. 05:58 - Accessing and slicing nested lists in Python 07:26 - Nested List in Python: Understanding indexing and slicing in lists 08:46 - Nested list slicing in Python 10:01 - Nested lists in Python can be accessed and sliced using specific indexing and steps.
@hanurohan5646 Жыл бұрын
"Hi mam , I've really enjoyed your previous C++ videos and found them very helpful. I was wondering if you have any plans to upload more videos on a regular basis? I think it would be really beneficial for your students, including myself, to have consistent access to your excellent teaching. Thanks for all you do!"
@with643 Жыл бұрын
Bro practice kaha karu i am begginer
@RanjitKumar-jc9ow4 ай бұрын
Happy teacher day maam🎉🎉🎉
@amvxeno3016 Жыл бұрын
It's really very helpful ! I am grateful to you ma'am
@arpandey52615 ай бұрын
10:55 list = [10,34,90,['Mohan', 'Shyam','Ram'],89] print(list[3][2])
@JacoBecker11 ай бұрын
Excellent. Thank you for sharing.
@RakshiParween3 ай бұрын
Thank you so much mam🎉
@rohinireddy-k7h Жыл бұрын
Can you please provide the notes as before videos which you have provided it will be more helpful tq in advance
@RaviKumar-hs8ms Жыл бұрын
Please mam make a video on SQL.
@siddu1675 Жыл бұрын
I love your teaching mam 💞💞💞
@_kip245 Жыл бұрын
Very very very good teacher 🙏. Thank you.
@Hyunduk_Yu8 ай бұрын
Great tutorial!
@sidharthkaruvarath25323 ай бұрын
list1 = [10,34,90,["Mohan","Shyam","Ram"],89] print(list1[3][2]) best classes i ever had on python
@JITHINJOHN-k2d3 ай бұрын
Yes it is possible to write int and string together by using nested list and main list. list = [10, 34, 90, ["Mohan", "Shyam", "Ram"], 89] length = len(list) print(length) print(list[3][2]) Output 5 Ram
mam can we find the length of the nested list? is it possible?
@tabahi220111 ай бұрын
thank you i was able to do this row1 = ["⬜","⬜","⬜"] row2 = ["⬜","⬜","⬜"] row3 = ["⬜","⬜","⬜"] map=[row1,row2,row3] print(f"{map[0]} {map[1]} {map[2]}") position=input("Enter Where do you want to put Treasure ") first=int(position[0]) second=int(position[1]) if second == 1: row1[first-1] = "X" elif second == 2: row2[first-1] = "X" elif second == 3: row3[first-1] = "X" print(f"{map[0]} {map[1]} {map[2]}")
@tippasanipavitra9044 Жыл бұрын
Mam when are you going to complete the whole course
@tippasanipavitra9044 Жыл бұрын
Upload remaining videos as soon as possible mam
@tharun153 Жыл бұрын
🎉🎉
@punyavathinavada261610 ай бұрын
Hlo mam is it possible to explain the nested list using for loop...
@KRajkumar-np9fk Жыл бұрын
Yes it is possible List2=[10,34,90,['mohan','shyam','ram'],89] Print(list2[3][2]) Output=ram
@avinashsonu2424 Жыл бұрын
the length of list is 5 and we can access ram by using indexing like these example: print(list2[3][2])
@aryansrivastava29227 ай бұрын
Also called subset
@anshuman4202 Жыл бұрын
Good evening mam,our session ending examination of cs has just about to start so could you please bring some sample paper for practice so that we can check our understanding to this subject of class 11
@umeshyt2368 Жыл бұрын
Ma toh bas mam ko dekhne aata hu Jo mam padhati hai woh ma nahi padhta😆❤
@RajeshMadaka-q2u15 күн бұрын
Mam please 🥺 send notes in description plzzzzzz Who want like notes like it
@alaashakir171210 ай бұрын
love
@ShakeelaMehdi2 ай бұрын
mam then how we can find the length of index three
@tanniruBindu6 ай бұрын
How can we find out the length of the nested list ? I think len(numbers[3]).Is it or not.
@petachaithravardhanreddy418 Жыл бұрын
print(list2[3][2])
@rushabhpal994 Жыл бұрын
Dii, I watched this whole lec on nested list in fact I knew much more about nested list erlier and in this lec nothing was new but di I'm not able to solve a problem of nested list on hackerrank what should I do
@Hanu-man112 Жыл бұрын
Is their possible to change and add the value or anything in list with in the list if yes how we can do that
@JennyslecturesCSIT Жыл бұрын
Yes possible... already Uploaded all videos on list.. please check out to get answer
@ajitsatpute690 Жыл бұрын
it is very much simple print(list2[3][2 ]) you will give the output of ram
@MachhaSairakshitha Жыл бұрын
mam can you tell me how to zoom the outputscreen of python
@dhruhilparmar1079 Жыл бұрын
Video is ended but I dont know what is list because my focus is not in list
@sahilrao4592 Жыл бұрын
@gauravbutle2429 Жыл бұрын
what is Api nd how to use it?
@veerareddyreddygari2495 Жыл бұрын
Print(list2[3][2])
@G.keerthi54411 ай бұрын
it is possible the length of the list is 5 print(list2[3][2]) output:ram
Mam my clg padtu thu mara gar ka address bolo na my tumaray tussion may join kartu... "Mam you So beautiful teach"... "Hamara clg ku transfar ho ko Aja ooo"🙏🥰😍 "i sa teacher ham ko melay ne na"😫🥺😭 Super mam keep it up because your teach.. 🤝 thumar video ku may fan because your teaching is very useful and teaching style is very good👍 😍🥰
@webseriesworld3293 Жыл бұрын
Mam...Why are you stop uploading c++ lecture videos..??
Please provide the notes mam it will be very helpful
@mr_affan15 Жыл бұрын
Mam currently I'm in 2nd year, if I constantly follow your python programming playlist so, will i able to get a job later?
@sarveshragav6915Ай бұрын
[3:2]
@n.akhila1746 Жыл бұрын
Hlo mam I can't understand Print(list1 [3][::2])
@makupetrical0038 ай бұрын
you print index 3 of the main index(which is the sub-index) ...[::2],,means you print the entire sub list jumping one index at a time e.g [1,2,3,5,6,8] you print [1 3 6]
@mdiftakherhossain8524 Жыл бұрын
I think you are wrong in time 9.03 line no 5 . This will be index . not length of the List.
@aaustin415 Жыл бұрын
You are so beautiful. I could watch your lectures all day
@royalhunterking20 Жыл бұрын
Madam you looking gorgeous😍✨❤
@biswajitpaul8628 Жыл бұрын
GOOD.
@MARUTHU_18015 ай бұрын
practice = [10,34,90,['mohan','shyam','ram'],89] print(practice[3][2])
@MM_creatios5 ай бұрын
@@MARUTHU_1801 ram
@MM_creatios5 ай бұрын
Ram
@riteshrana01 Жыл бұрын
Notes plz ?
@JashSingh-bv5ge Жыл бұрын
Thank you Jenny mam your vid helped me a lot, as a beginner python learner it was very well explained for me. (º_º) /
@zubair_zone2 ай бұрын
These examples are for beginners Try developer tools property paths if u can Appreciated! ❤
Madam please provide your handwritten notes mam🙏🙏🙏🙏
@prabalvermaa8 ай бұрын
i am learning dart
@tutorialshack13694 ай бұрын
Mam please provide notes
@VishnuVardhan-dp7hu Жыл бұрын
please upload the notes mam
@sourabhmagadum8372 Жыл бұрын
mam please upload the notes 🥲
@BN-hy1nd Жыл бұрын
Please ignore my earlier comments I have found the error. My fault and I do apologise on my knees
@yuvatejareddy3619 Жыл бұрын
I am not able see board madam your colour is dominating it 😂(sorry for that)
@dhruhilparmar1079 Жыл бұрын
If she is explain than how can focus on topic?
@kirankumar-pv1yy Жыл бұрын
Madame Please Start Java as soon as possible madame please
@krishnapatel6531 Жыл бұрын
Good evening Mam, It's my Humble request 🥺, Please! make one shot of syllabus for class 12th cbse Please! mam.. 🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻