Nested List in Python | Python Tutorials for Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2024

ความคิดเห็น • 120

  • @danielmukenya3317
    @danielmukenya3317 ปีที่แล้ว +39

    print("It is very much possible")
    example1 = [10,34,90,['Mohan','Shyam','Ram'],89]
    print(len(example1))
    print(example1[3][2])

  • @icedragonmaster87master26
    @icedragonmaster87master26 11 หลายเดือนก่อน +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

  • @devSackey
    @devSackey 11 หลายเดือนก่อน +1

    Length of list2
    Print(len(list2))
    #output 5
    Print(list2[3][2])
    #output ram
    thanks so much

  • @PRIYANSHUCHAKRABORTY-yv3mq
    @PRIYANSHUCHAKRABORTY-yv3mq 6 หลายเดือนก่อน +2

    HW question ans-
    list=[10,34,90,["mohan","sohan","ram"],89]
    print(list[3][2])
    tqsm mam,aap bhut aacha explain krti ho

  • @aishwaryagandhi1878
    @aishwaryagandhi1878 ปีที่แล้ว +12

    Yes, list2 is possible.
    *Input*
    list2=[10,34,90,["Mohan","Shyam","Ram"],89]
    print(list2[3][2])
    *Output*
    Ram

  • @sidharthkaruvarath2532
    @sidharthkaruvarath2532 27 วันที่ผ่านมา

    list1 = [10,34,90,["Mohan","Shyam","Ram"],89]
    print(list1[3][2])
    best classes i ever had on python

  • @rugmaable
    @rugmaable 8 หลายเดือนก่อน

    concise and clear. Straight to the point. Thanks for the good work done.

  • @hanurohan5646
    @hanurohan5646 ปีที่แล้ว +10

    "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
      @with643 ปีที่แล้ว

      Bro practice kaha karu i am begginer

  • @emiraelDev
    @emiraelDev ปีที่แล้ว +4

    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🙏🏾

  • @dishanksahu7459
    @dishanksahu7459 ปีที่แล้ว +6

    Thank you mam 🎉

  • @JITHINJOHN-k2d
    @JITHINJOHN-k2d หลายเดือนก่อน

    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

  • @quiteintresting1916
    @quiteintresting1916 ปีที่แล้ว +3

    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

  • @KRajkumar-np9fk
    @KRajkumar-np9fk 11 หลายเดือนก่อน

    Yes it is possible
    List2=[10,34,90,['mohan','shyam','ram'],89]
    Print(list2[3][2])
    Output=ram

  • @KALKI-2_2898_AD
    @KALKI-2_2898_AD หลายเดือนก่อน +1

    list2 = [10,34,90,['mohan','syam','ram'],89]
    print(list2[3][2])

  • @annoyingprecision2487
    @annoyingprecision2487 11 หลายเดือนก่อน +1

    You're a great teacher. Liked and subscribed. Thank you.

  • @prakulhn3365
    @prakulhn3365 ปีที่แล้ว +1

    1) Yes
    2) len(list2) = 5
    3) print(list2[3][2]) ==> Ram

  • @amvxeno3016
    @amvxeno3016 ปีที่แล้ว +1

    It's really very helpful ! I am grateful to you ma'am

  • @ramyashashankakunipalli7691
    @ramyashashankakunipalli7691 ปีที่แล้ว +2

    print(len(list2))
    O/P=5
    print(list2[3][2])

  • @JacoBecker
    @JacoBecker 8 หลายเดือนก่อน

    Excellent. Thank you for sharing.

  • @arpandey5261
    @arpandey5261 3 หลายเดือนก่อน +1

    10:55
    list = [10,34,90,['Mohan', 'Shyam','Ram'],89]
    print(list[3][2])

  • @RaviKumar-hs8ms
    @RaviKumar-hs8ms ปีที่แล้ว +4

    Please mam make a video on SQL.

  • @RanjitKumar-jc9ow
    @RanjitKumar-jc9ow 2 หลายเดือนก่อน

    Happy teacher day maam🎉🎉🎉

  • @rohinireddy-k7h
    @rohinireddy-k7h ปีที่แล้ว +2

    Can you please provide the notes as before videos which you have provided it will be more helpful tq in advance

  • @tabahi2201
    @tabahi2201 9 หลายเดือนก่อน

    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]}")

  • @bhautikhirpara007
    @bhautikhirpara007 3 หลายเดือนก่อน +1

    list2 = [10,34,90,["mohan","shyam","ram"],89]
    print(list2) #it's possible...
    lenght= print(len(list2))
    print(list2[3][2])

  • @avinashsonu2424
    @avinashsonu2424 ปีที่แล้ว

    the length of list is 5 and we can access ram by using indexing like these example: print(list2[3][2])

  • @RakshiParween
    @RakshiParween หลายเดือนก่อน

    Thank you so much mam🎉

  • @_kip245
    @_kip245 ปีที่แล้ว

    Very very very good teacher 🙏. Thank you.

  • @siddu1675
    @siddu1675 ปีที่แล้ว

    I love your teaching mam 💞💞💞

  • @divyakurukuti699
    @divyakurukuti699 2 หลายเดือนก่อน

    list2=[10,34,90,['Mohan','Shyam','Ram'],89]
    print(list2[3][2])
    output:
    Ram

  • @roshinishake9400
    @roshinishake9400 9 หลายเดือนก่อน

    Print(list1[3]) #[mohan, shyam, Ram]
    Print (list1[3][2]) #Ram

  • @petachaithravardhanreddy418
    @petachaithravardhanreddy418 ปีที่แล้ว +1

    print(list2[3][2])

  • @SarathReddyKakarla
    @SarathReddyKakarla 2 หลายเดือนก่อน

    list=[10,34,90,['sarath','sri','jeswanth','bavesh','praveen'],89]
    print(list[3][2])

  • @girishbv6713
    @girishbv6713 3 หลายเดือนก่อน

    x=[1,2,3,['a','b','c'],4]
    y=x[3][2]
    print(y)

  • @adiofficial1808
    @adiofficial1808 2 หลายเดือนก่อน

    list2 = [10, 34, 90, ['Mohan', 'Shyam', 'Ram'], 89]
    # Accessing 'Ram'
    ram = list2[3][2]
    print(ram)

  • @ajitsatpute690
    @ajitsatpute690 ปีที่แล้ว

    it is very much simple print(list2[3][2 ]) you will give the output of ram

  • @a-n.o.n-y.m.o.u.s
    @a-n.o.n-y.m.o.u.s ปีที่แล้ว

    I can watch you all day.

  • @shivakrishna_varma9658
    @shivakrishna_varma9658 3 หลายเดือนก่อน

    list2 [10, 34, 90, ["Mohan", "Shyam", "Ram"], 89]
    print(len(list2))
    print(list2[3][2])

  • @veerareddyreddygari2495
    @veerareddyreddygari2495 11 หลายเดือนก่อน

    Print(list2[3][2])

  • @aryansrivastava2922
    @aryansrivastava2922 5 หลายเดือนก่อน

    Also called subset

  • @glps369
    @glps369 ปีที่แล้ว

    Thank You

  • @AnilKillana
    @AnilKillana 7 หลายเดือนก่อน

    Mam I have completed my Assignment
    list = [10,34,90,['Mohan','syam','ram'],89]
    print(list[3][2])

  • @ansonapeter8740
    @ansonapeter8740 4 หลายเดือนก่อน

    amazing

  • @MukulKumar-vq7km
    @MukulKumar-vq7km ปีที่แล้ว

    Thank mam provided this video

  • @sksaifulhaque2402
    @sksaifulhaque2402 2 หลายเดือนก่อน

    print(list_2[3][2])

  • @Hyunduk_Yu
    @Hyunduk_Yu 5 หลายเดือนก่อน

    Great tutorial!

  • @G.keerthi544
    @G.keerthi544 8 หลายเดือนก่อน

    it is possible
    the length of the list is 5
    print(list2[3][2])
    output:ram

  • @anshuman4202
    @anshuman4202 ปีที่แล้ว +1

    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

  • @crahulreddy3181
    @crahulreddy3181 ปีที่แล้ว

    Thanks mam,please upload videos little bit of fastely

  • @MARUTHU_1801
    @MARUTHU_1801 3 หลายเดือนก่อน

    practice = [10,34,90,['mohan','shyam','ram'],89]
    print(practice[3][2])

    • @MM_creatios
      @MM_creatios 3 หลายเดือนก่อน

      @@MARUTHU_1801 ram

    • @MM_creatios
      @MM_creatios 3 หลายเดือนก่อน +1

      Ram

  • @tharun153
    @tharun153 ปีที่แล้ว

    🎉🎉

  • @alaashakir1712
    @alaashakir1712 8 หลายเดือนก่อน

    love

  • @sharifullahsalarzai
    @sharifullahsalarzai ปีที่แล้ว

    Mam please continue c++

  • @rushabhpal994
    @rushabhpal994 9 หลายเดือนก่อน

    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

  • @punyavathinavada2616
    @punyavathinavada2616 8 หลายเดือนก่อน

    Hlo mam is it possible to explain the nested list using for loop...

  • @JANARDHANREDDYILLURU
    @JANARDHANREDDYILLURU ปีที่แล้ว

    Mam, is it possible to find the length of the sub list ?

  • @umeshyt2368
    @umeshyt2368 ปีที่แล้ว +1

    Ma toh bas mam ko dekhne aata hu
    Jo mam padhati hai woh ma nahi padhta😆❤

  • @bhavanar39
    @bhavanar39 ปีที่แล้ว

    Please provide the notes mam it will be very helpful

  • @tippasanipavitra9044
    @tippasanipavitra9044 ปีที่แล้ว +1

    Mam when are you going to complete the whole course

  • @aquibjawed5260
    @aquibjawed5260 ปีที่แล้ว +1

    Mam what happened to c++ playlist?

  • @ShakeelaMehdi
    @ShakeelaMehdi 7 วันที่ผ่านมา

    mam then how we can find the length of index three

  • @venkateswarlugoud4564
    @venkateswarlugoud4564 ปีที่แล้ว

    Please continue python series mam❤️❤️❤️

  • @sanjayganesh5302
    @sanjayganesh5302 ปีที่แล้ว +2

    my_list =[10,89,77,['saran' ,'gokul' , 'abilash'] ,66]
    length =(my_list[3][2])
    print(length)
    o/p
    ['abilash']

  • @himasankar9382
    @himasankar9382 หลายเดือนก่อน

    mam can we find the length of the nested list? is it possible?

  • @mohammedjobayer118
    @mohammedjobayer118 14 วันที่ผ่านมา

    These examples are for beginners
    Try developer tools property paths if u can
    Appreciated! ❤

  • @aaustin415
    @aaustin415 ปีที่แล้ว

    You are so beautiful. I could watch your lectures all day

  • @rebazgarde2620
    @rebazgarde2620 19 วันที่ผ่านมา

    list2 = [10,34,90,['Mohan','shyam',"Rama"],89]
    print(list2 [3] [-1]) this anwer right

  • @gauravbutle2429
    @gauravbutle2429 ปีที่แล้ว

    what is Api nd how to
    use it?

  • @tanniruBindu
    @tanniruBindu 4 หลายเดือนก่อน

    How can we find out the length of the nested list ?
    I think len(numbers[3]).Is it or not.

  • @syedsalauddin1924
    @syedsalauddin1924 ปีที่แล้ว

    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👍 😍🥰

  • @mominajadoon8569
    @mominajadoon8569 11 หลายเดือนก่อน +1

    pls share notes too

  • @biswajitpaul8628
    @biswajitpaul8628 ปีที่แล้ว

    GOOD.

  • @MachhaSairakshitha
    @MachhaSairakshitha ปีที่แล้ว

    mam can you tell me how to zoom the outputscreen of python

  • @mr_affan15
    @mr_affan15 ปีที่แล้ว +1

    Mam currently I'm in 2nd year, if I constantly follow your python programming playlist so, will i able to get a job later?

  • @Hanu-man112
    @Hanu-man112 11 หลายเดือนก่อน

    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
      @JennyslecturesCSIT  11 หลายเดือนก่อน

      Yes possible... already Uploaded all videos on list.. please check out to get answer

  • @prabalverma334
    @prabalverma334 5 หลายเดือนก่อน

    i am learning dart

  • @dhruhilparmar1079
    @dhruhilparmar1079 ปีที่แล้ว +1

    Video is ended but I dont know what is list because my focus is not in list

  • @kalden.s814
    @kalden.s814 ปีที่แล้ว +1

    Stop being beautiful😜😍😍

  • @royalhunterking20
    @royalhunterking20 ปีที่แล้ว

    Madam you looking gorgeous😍✨❤

  • @Sven1401
    @Sven1401 ปีที่แล้ว

    But the first element is considered as 0 of list .....?

  • @webseriesworld3293
    @webseriesworld3293 ปีที่แล้ว

    Mam...Why are you stop uploading c++ lecture videos..??

  • @BN-hy1nd
    @BN-hy1nd ปีที่แล้ว

    Please ignore my earlier comments I have found the error. My fault and I do apologise on my knees

  • @kirankumar-pv1yy
    @kirankumar-pv1yy ปีที่แล้ว

    Madame Please Start Java as soon as possible madame please

  • @VishnuVardhan-dp7hu
    @VishnuVardhan-dp7hu ปีที่แล้ว

    please upload the notes mam

  • @tutorialshack1369
    @tutorialshack1369 หลายเดือนก่อน

    Mam please provide notes

  • @riteshrana01
    @riteshrana01 ปีที่แล้ว

    Notes plz ?

  • @hemanth5132
    @hemanth5132 ปีที่แล้ว

    Madam please provide your handwritten notes mam🙏🙏🙏🙏

  • @mdiftakherhossain8524
    @mdiftakherhossain8524 ปีที่แล้ว

    I think you are wrong in time 9.03 line no 5 . This will be index . not length of the List.

  • @krishnapatel6531
    @krishnapatel6531 ปีที่แล้ว

    Good evening Mam, It's my Humble request 🥺, Please! make one shot of syllabus for class 12th cbse Please! mam.. 🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

    • @siddu1675
      @siddu1675 ปีที่แล้ว

      What we have to do??

  • @n.akhila1746
    @n.akhila1746 11 หลายเดือนก่อน

    Hlo mam I can't understand
    Print(list1 [3][::2])

    • @makupetrical003
      @makupetrical003 6 หลายเดือนก่อน

      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]

  • @allaboutfood.
    @allaboutfood. ปีที่แล้ว

    Mam why are not uploading notes?

  • @NK-cm6ro
    @NK-cm6ro 9 หลายเดือนก่อน

    MAM WHERE IS NOTES

  • @sorakundlabharath
    @sorakundlabharath 24 วันที่ผ่านมา

    Ma'am notes ma'am?

  • @JashSingh-bv5ge
    @JashSingh-bv5ge ปีที่แล้ว

    Thank you Jenny mam your vid helped me a lot, as a beginner python learner
    it was very well explained for me. (º_º)
    /

  • @SAKIB_654_
    @SAKIB_654_ ปีที่แล้ว

    Ere didi 11 lakhs subscriber ho gay he ab to apna setup change kr lo

  • @yuvatejareddy3619
    @yuvatejareddy3619 ปีที่แล้ว

    I am not able see board madam your colour is dominating it 😂(sorry for that)

  • @sourabhmagadum8372
    @sourabhmagadum8372 ปีที่แล้ว

    mam please upload the notes 🥲

  • @deeptiwari4603
    @deeptiwari4603 ปีที่แล้ว

    Mam hindi me padhayange to thoda better honga

  • @dhruhilparmar1079
    @dhruhilparmar1079 ปีที่แล้ว

    If she is explain than how can focus on topic?

  • @kopila_coders
    @kopila_coders ปีที่แล้ว +1

    Length:
    Print(len(list))#output 7
    Print(list[3][2])#output ram