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
"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!"
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🙏🏾
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
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]}")
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
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
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👍 😍🥰
Good evening Mam, It's my Humble request 🥺, Please! make one shot of syllabus for class 12th cbse Please! mam.. 🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
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]
print("It is very much possible")
example1 = [10,34,90,['Mohan','Shyam','Ram'],89]
print(len(example1))
print(example1[3][2])
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
THANK U 🎉❤
Length of list2
Print(len(list2))
#output 5
Print(list2[3][2])
#output ram
thanks so much
HW question ans-
list=[10,34,90,["mohan","sohan","ram"],89]
print(list[3][2])
tqsm mam,aap bhut aacha explain krti ho
Yes, list2 is possible.
*Input*
list2=[10,34,90,["Mohan","Shyam","Ram"],89]
print(list2[3][2])
*Output*
Ram
print (list2[3] [-1] )
list1 = [10,34,90,["Mohan","Shyam","Ram"],89]
print(list1[3][2])
best classes i ever had on python
concise and clear. Straight to the point. Thanks for the good work done.
"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!"
Bro practice kaha karu i am begginer
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🙏🏾
Thank you mam 🎉
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
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
Yes it is possible
List2=[10,34,90,['mohan','shyam','ram'],89]
Print(list2[3][2])
Output=ram
list2 = [10,34,90,['mohan','syam','ram'],89]
print(list2[3][2])
You're a great teacher. Liked and subscribed. Thank you.
1) Yes
2) len(list2) = 5
3) print(list2[3][2]) ==> Ram
It's really very helpful ! I am grateful to you ma'am
print(len(list2))
O/P=5
print(list2[3][2])
Excellent. Thank you for sharing.
10:55
list = [10,34,90,['Mohan', 'Shyam','Ram'],89]
print(list[3][2])
Please mam make a video on SQL.
Happy teacher day maam🎉🎉🎉
Can you please provide the notes as before videos which you have provided it will be more helpful tq in advance
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]}")
list2 = [10,34,90,["mohan","shyam","ram"],89]
print(list2) #it's possible...
lenght= print(len(list2))
print(list2[3][2])
the length of list is 5 and we can access ram by using indexing like these example: print(list2[3][2])
Thank you so much mam🎉
Very very very good teacher 🙏. Thank you.
I love your teaching mam 💞💞💞
list2=[10,34,90,['Mohan','Shyam','Ram'],89]
print(list2[3][2])
output:
Ram
Print(list1[3]) #[mohan, shyam, Ram]
Print (list1[3][2]) #Ram
print(list2[3][2])
list=[10,34,90,['sarath','sri','jeswanth','bavesh','praveen'],89]
print(list[3][2])
x=[1,2,3,['a','b','c'],4]
y=x[3][2]
print(y)
list2 = [10, 34, 90, ['Mohan', 'Shyam', 'Ram'], 89]
# Accessing 'Ram'
ram = list2[3][2]
print(ram)
it is very much simple print(list2[3][2 ]) you will give the output of ram
I can watch you all day.
list2 [10, 34, 90, ["Mohan", "Shyam", "Ram"], 89]
print(len(list2))
print(list2[3][2])
Print(list2[3][2])
Also called subset
Thank You
Mam I have completed my Assignment
list = [10,34,90,['Mohan','syam','ram'],89]
print(list[3][2])
amazing
Thank mam provided this video
print(list_2[3][2])
Great tutorial!
it is possible
the length of the list is 5
print(list2[3][2])
output:ram
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
Thanks mam,please upload videos little bit of fastely
practice = [10,34,90,['mohan','shyam','ram'],89]
print(practice[3][2])
@@MARUTHU_1801 ram
Ram
🎉🎉
love
Mam please continue c++
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
Hlo mam is it possible to explain the nested list using for loop...
Mam, is it possible to find the length of the sub list ?
Ma toh bas mam ko dekhne aata hu
Jo mam padhati hai woh ma nahi padhta😆❤
Please provide the notes mam it will be very helpful
Mam when are you going to complete the whole course
Upload remaining videos as soon as possible mam
Mam what happened to c++ playlist?
mam then how we can find the length of index three
Please continue python series mam❤️❤️❤️
my_list =[10,89,77,['saran' ,'gokul' , 'abilash'] ,66]
length =(my_list[3][2])
print(length)
o/p
['abilash']
mam can we find the length of the nested list? is it possible?
These examples are for beginners
Try developer tools property paths if u can
Appreciated! ❤
You are so beautiful. I could watch your lectures all day
list2 = [10,34,90,['Mohan','shyam',"Rama"],89]
print(list2 [3] [-1]) this anwer right
what is Api nd how to
use it?
How can we find out the length of the nested list ?
I think len(numbers[3]).Is it or not.
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👍 😍🥰
pls share notes too
GOOD.
mam can you tell me how to zoom the outputscreen of python
Mam currently I'm in 2nd year, if I constantly follow your python programming playlist so, will i able to get a job later?
Is their possible to change and add the value or anything in list with in the list if yes how we can do that
Yes possible... already Uploaded all videos on list.. please check out to get answer
i am learning dart
Video is ended but I dont know what is list because my focus is not in list
Stop being beautiful😜😍😍
hi kalden
Madam you looking gorgeous😍✨❤
But the first element is considered as 0 of list .....?
Mam...Why are you stop uploading c++ lecture videos..??
Please ignore my earlier comments I have found the error. My fault and I do apologise on my knees
Madame Please Start Java as soon as possible madame please
please upload the notes mam
Mam please provide notes
Notes plz ?
Madam please provide your handwritten notes mam🙏🙏🙏🙏
I think you are wrong in time 9.03 line no 5 . This will be index . not length of the List.
Good evening Mam, It's my Humble request 🥺, Please! make one shot of syllabus for class 12th cbse Please! mam.. 🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
What we have to do??
Hlo mam I can't understand
Print(list1 [3][::2])
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]
Mam why are not uploading notes?
MAM WHERE IS NOTES
Ma'am notes ma'am?
Thank you Jenny mam your vid helped me a lot, as a beginner python learner
it was very well explained for me. (º_º)
/
Ere didi 11 lakhs subscriber ho gay he ab to apna setup change kr lo
I am not able see board madam your colour is dominating it 😂(sorry for that)
mam please upload the notes 🥲
Mam hindi me padhayange to thoda better honga
If she is explain than how can focus on topic?
Length:
Print(len(list))#output 7
Print(list[3][2])#output ram