Accessing Elements of a List in Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ม.ค. 2025

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

  • @MrUnknown-z5w
    @MrUnknown-z5w ปีที่แล้ว +28

    print(my_list3[1][0][1])
    Output:- b

  • @jingersatuh6322
    @jingersatuh6322 10 หลายเดือนก่อน +6

    This is a very difficult topic. The presentation was so good that I understood it so easily.

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

    Correct answer is : my_list3[1][0][1]
    [1] access the second list in my_list3
    Then we see at [1] there are 2more lists,so if we want to access "b" we need to access the first list by [0]
    And followed by the element we want to access [1]

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

    Question: mylist_3 = [[1,2,3],[["a","b","c"],5,6]]
    Requird Element = b
    Solution = mylist_3[1][0][1]
    Output : b

  • @yadavstuntboy..6490
    @yadavstuntboy..6490 9 หลายเดือนก่อน

    16:40 my_list3 = [[1, 2, 3], [['a', 'b', 'c'], 5, 6]]
    for accessing 'b' item from my_list3
    print(my_list3[1][0][1])

  • @AltafAnsari-wy7zu
    @AltafAnsari-wy7zu หลายเดือนก่อน +1

    l=[[1,2,3],['a','b','c',5,6]]
    b=l[1][1]
    print(b)

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

    great, i was having issue in understanding Lists. You explained it very well. Thanks

  • @jereddymanojkumar3830
    @jereddymanojkumar3830 ปีที่แล้ว +16

    My_list3[1][0][1]='b'

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

      syntax error My_list3 is undefined, in python My_list3 != my_list3

    • @DANISH-MAHI
      @DANISH-MAHI 10 หลายเดือนก่อน

      😂😂lol@@lionelfaith3646 , good observation

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

      ​@@lionelfaith3646bro

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

      👍👍​@@lionelfaith3646

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

    How are individual characters of strings stored in the memory inside a multidimensional list? Are the individual characters assigned indices?

  • @pooh-24.p
    @pooh-24.p 3 หลายเดือนก่อน

    These videos are helping me a lot, thank you so much :)

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

    multilist = [[1,2,3],[['a','b','c'],[5,6]]]
    print(multilist[1][0][1])

  • @mohammedhamad1513
    @mohammedhamad1513 7 หลายเดือนก่อน +3

    my_list3=[1][0][1] the output is b

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

    these videos rock. thank you !

  • @sunilkunkekar7383
    @sunilkunkekar7383 8 หลายเดือนก่อน +1

    my_list =[[1,2,3],['a','b','c'],5,6]
    k= my_list[1][1]
    print(k)

  • @tayyab.sheikh
    @tayyab.sheikh 6 หลายเดือนก่อน +1

    I have a question Jaspreet Sir! Why list's index starts from 0 and not 1?

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

      Python indexing is set to start at 0 by default.

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

      It is offset from the starting point. The first element is at zero offset from the starting point

  • @NoobMan-s2d
    @NoobMan-s2d 2 หลายเดือนก่อน

    a=[[1,2,3],[['a','b','c',[5,6]]]]
    print(a[1][0][1])

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

    # to extract the value "b" call:
    my_list3[1][0][1]
    #output = "b"

  • @UbaidZaman-xl3sp
    @UbaidZaman-xl3sp หลายเดือนก่อน

    My list [[1,2,3],[['a','b','c'],[5,6]]]
    Print(my list)[1][0][1]

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

    The answer of the homework problem is my_list3[1][1]

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

    The answer is:
    my_list2[1][0][1]

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

    how do I access an individual char from a multi-dimensional list? so if I want to access the N in Neso? is my_list [1] [1] ?

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

      the_list = [1,'Neso',2]
      print(the_list[1][0])

  • @AaronOsei-f1x
    @AaronOsei-f1x 2 หลายเดือนก่อน

    my_list_3 = [1, 2, 3], "a", "b", "c", [5, 6]
    print(my_list_3[2])

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

    my_list3 =[[1,2,3], ["a","b","c"] , 5,6]
    print(my_list3[1] [1])

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

    my_list=[[1,2,3],"abc",[4,5,6]]
    print(my_list[1][1])
    Output
    b

  • @tonystark33748
    @tonystark33748 11 หลายเดือนก่อน +3

    # Homework-Problem
    # Q -> Access value "b"?
    # Code:
    my_list3 = [[1, 2, 3], ['a', 'b', 'c'], [5, 6]]
    value_b = my_list3[1][1]
    print(value_b)

  • @KusumLata-iu6xd
    @KusumLata-iu6xd 10 หลายเดือนก่อน

    print(my_list3[1][0][1]) giving error of indexError: string index out of range. the correct answer is [1][1]

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

      answer is[1][0][1]

  • @የፊልም_ዓለም360
    @የፊልም_ዓለም360 2 หลายเดือนก่อน

    my_list3 = [[1,2,3],[['a','b','c'],5,6]]
    #how to access the value 'b' in the above list
    print("Accessed element below: ")
    print(my_list3[1][0][1])

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

    sir please sir slotion increct negative

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

    my_list3=[[1,2,3],[['a','b','c'],5,6]]
    print(my_list3[1][0][1])
    output # b

  • @baguidybachmar586
    @baguidybachmar586 ปีที่แล้ว +5

    Mylist_3 [1] [1]

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

      it's false m your output will be: [5].
      remember in python index starts at 0 and it's my_list3 not My_list3

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

    my_list3 = [[1,2,3],[['a','b','c'],5,6]]
    list3 = my_list3[1][0][1]
    print(list3)
    thank you for support, good luck

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

    Print(list_1[1][1])
    Out of range if i include [0]

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

    my_list = [[1,2,3],[["a","b","c"]'5'6]]
    Print (my_list[1][0][1])

  • @captaintariq6350
    @captaintariq6350 9 หลายเดือนก่อน +1

    my_list = [[1, 2, 3], ['a', 'b', 'c'], [5, 6]]
    print(my_list[1][1])
    print(my_list[-2][-2])
    print(my_list[1][-2])
    print(my_list[-2][1])

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

    Answer of HW -- print(my_list3[1][0][-2])😅Sorry for taking negative indexing only i like that

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

    my_list3 = [[1,2,3],[['a','b','c'],5,6]]

  • @carsonkibiwott9315
    @carsonkibiwott9315 5 หลายเดือนก่อน +2

    The correct answer is;
    my_list3 = [ [1, 2, 3], ["a", "b", "c"], [5, 6] ]
    print( my_list3 [1] [1])

  • @kaushikshiva7852
    @kaushikshiva7852 9 หลายเดือนก่อน +1

    lists=[[1,2,3],["a","b","c",5,6]]
    print (lists[1][1])

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

    Answer to homework question :
    print(my_list3[1][0][1])

  • @tayyab.sheikh
    @tayyab.sheikh 6 หลายเดือนก่อน +1

    I was here to comment the correct answer but already everyone has posted it.

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

    Answer : my_list3[1][0][1]

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

    my_list = [[1,2,3], [['a','b','c'], 5,6]]
    print(my_list[1][0][1])
    ans:- b ;)

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

    l1=[[1,2,3],['A','B','C'],5,6]
    print(l1[1][1])
    we can use this type

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

    Print(my_list[2])

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

    b = [["a","b","c"],5,6]

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

    print(my_list3[1][1])

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

    print(my_list[1][1])

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

      syntax error my_list is undefined, even if it was my_list3[1][1]=5 not 'b'

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

    print(my_list[1][0][1])

    • @CHAITANYAB-c8v
      @CHAITANYAB-c8v 11 หลายเดือนก่อน

      print(my_list3[1][0][1])

  • @OLUWATOYINAJISEBUTU-o6z
    @OLUWATOYINAJISEBUTU-o6z 14 วันที่ผ่านมา

    list3[2]

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

    my_list3 [1] [0] [1]='b'

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

    My_list 3[2]

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

      syntax error because my_list3 has only 2 elements within it, it means the index of a last element is [1].

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

    print(my_list3[1][1]) homework b

  • @RosesAreAlsoPink
    @RosesAreAlsoPink ปีที่แล้ว +9

    Answer to the Homework Question: print(my_list3[1][1])

    • @arjunyakala6851
      @arjunyakala6851 11 หลายเดือนก่อน +9

      Wrong...print (my_list3 [1][0][1])

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

      The above answer is correct according to the explanation given in the video, although why did we add [0] in between?

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

      ​@@samaira6031to access first list of second list

    • @aditi.rathore_20
      @aditi.rathore_20 หลายเดือนก่อน

      Wrong

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

    mylist3[1][1]

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

      your output : 5. wrong answer and it's my_list3 not mylist3 (mylist3 is undefined)

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

    my_list3[1][0][1]=b

  • @Raja-tt4ll
    @Raja-tt4ll 7 หลายเดือนก่อน

    Nice

  • @BoyaSurendra-o9p
    @BoyaSurendra-o9p 10 หลายเดือนก่อน

    List =[[1,2,3],[['a','b'],[5,6]]]
    Print(list[1][0][1])

  • @Mahlet-y7e
    @Mahlet-y7e 10 หลายเดือนก่อน

    My_list[1][0][1]

  • @suriyanarayan.s
    @suriyanarayan.s 3 หลายเดือนก่อน

    list_1 = [[1,2,3],[['a','b','c'],4,5,6]]
    list_1
    list_1[1][0][1]

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

    My-list3,[1][0]=0

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

    my_list = [1,2,3],['a','b','c'], [5,6]
    print(my_list[1][1])

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

    my_list3 [1][1]

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

      wrong, you need to access the 1st mem block and then0th index of the sub-mem block and then 1st index of the sub-memblock, it would be something like this: my_list3[1][0][1]

  • @Mahlet-y7e
    @Mahlet-y7e 10 หลายเดือนก่อน

    My list3[1][0]

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

    my_list [1] [0] [1]

  • @Mahlet-y7e
    @Mahlet-y7e 10 หลายเดือนก่อน

    My list3[1][0][1]

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

    Sure, I can explain it simply!
    First, let's break down the code:
    mylist = [[1, 2, 3], [5, 6, ['a', 'b', 'c']]]
    This line creates a list called `mylist` containing two lists inside it. Each of these inner lists contains numbers and another list.
    Now, let's break down the indexing part:
    print(mylist[1][2][1])
    - `mylist[1]` refers to the second element of `mylist`, which is `[5, 6, ['a', 'b', 'c']]`.
    - Then, `mylist[1][2]` refers to the third element of that second list, which is `['a', 'b', 'c']`.
    - Finally, `mylist[1][2][1]` refers to the second element of that inner list, which is `'b'`.
    So, `print(mylist[1][2][1])` will output `'b'`

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

      When you type [1] [2] youll get 6. So you must type [1][0]

  • @RonarRasin-on7nk
    @RonarRasin-on7nk 11 หลายเดือนก่อน

    my_list3 = [[1, 2, 3], [['a', 'b', 'c'], 5, 6]]
    print(my_list3[1][0][1])

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

    [1][1]

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

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

    b

  • @priyamondal6820
    @priyamondal6820 7 หลายเดือนก่อน +1

    list3 = [[1,2,3],['a','b','c'], [5,6]]
    print (list3 [1][1])

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

      or
      list4 = [[1, 2, 3], ['a', 'b', 'c'], 5, 6]
      print (list4 [1][1])

  • @KumailHaider-x4l
    @KumailHaider-x4l 7 หลายเดือนก่อน +1

    my_list = [[1, 2, 3], [['a', 'b', 'c'], [5, 6]]]
    print(my_list[1][0][1])

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

    numbers = [[1,2,3],[['a','b','c'],5,6]]
    print(numbers[1][0][1])

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

    my_list3 = [[1,2,3], ['a','b','c'], [5,6]]
    print(my_list3[1][1])

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

    my_list3 = [[1,2,3],[["a","b","c"],5,6]]
    print(my_list3[1][0][1])

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

    my_list=[[1,2,3],['a','b','c'],[3,4,5]]
    print(my_list[1][1])

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

    print(my_list[1][1])

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

    my_list3[1][0][1] = 'b'

  • @rita_martha
    @rita_martha 7 หลายเดือนก่อน +1

    my_list3[1][0][1]=b

  • @MathPoint-hw4qj
    @MathPoint-hw4qj หลายเดือนก่อน

    print(my_list3[1][1])

  • @seelamrajuraju6193
    @seelamrajuraju6193 15 วันที่ผ่านมา

    My_list[1][0][1]

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

    my_list3=[[1,2,3],[['a','b','c'],5,6]]
    print(my_list3[1][0][1])

  • @Samatha-n8y
    @Samatha-n8y หลายเดือนก่อน

    print(my_list3[1][1])

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

    my_list3[1][0][1]=b

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

    my_list3 = [[1,2,3],[['a','b','c'],[5,6]]]
    print(my_list3[1][0][1])

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

    my_list3 = [[1,2,3],[["a","b","c"],5,6]]
    print(my_list3[1][0][1])

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

    my_list = [1,2,3,[['a','b','c'],5,6]]
    print(my_list[3][0][1])

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

    my_list =[1,2,3,],[['a', 'b', 'c'], 5, 6]
    print(my_list[1][0][1])