Adding Elements to a List in Python

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

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

  • @meenakshirathore-h1t
    @meenakshirathore-h1t ปีที่แล้ว +9

    Concatenation is also same as extend () method

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

    Precise,clear and understandable

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

    Wonderfully explained...you just earned a subscriber 🎉🎉🎉

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

    Crystals clear explanation sir thank you so much sir

  • @PradeepKumarPathak-o4v
    @PradeepKumarPathak-o4v 4 หลายเดือนก่อน

    wowwww what a explaination, Thnak you sir

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

    my_list = [[1, 2, 3], ['a', 'b''], 5, 6]
    list2 = ['E', 'R']
    my_list[1].extend(list2)
    print(my_list)
    OUTPUT:
    [[1, 2, 3], ['a', 'b', 'E', 'R'], 5, 6]

  • @hunt..9577
    @hunt..9577 ปีที่แล้ว

    Great explanation 🙂

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

    Excellence lecture sir

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

    Osm explanation anna❤

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

    🐍 Python learning is a Fun here

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

    how to add
    list1=[1,2,3]
    list2=['js','python','c+']
    expected output: list1=[ [1,2,3], [ 'js', 'python', 'c+' ] ]

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

    Nice

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

    print([1][1])