Python in Kannada - Lists Operations, Methods and Functions | Full Course for Beginners - # 5

Поделиться
HTML-код
  • Опубликовано: 13 янв 2025

Комментарии • 276

  • @YogithaYogi42
    @YogithaYogi42 3 месяца назад +88

    Day 6 attendance 🙋 👇

  • @Peakpulse_11
    @Peakpulse_11 3 месяца назад +13

    The day started to learn python but I searched so many youtube videos to learn python I never seen teaching like you the way your teaching is mind blowing when I started watched your python video i never board to watch your python video you are doing osm jobe keep it up good bless you man ❤

  • @spandana_dinesh
    @spandana_dinesh 3 месяца назад +13

    Day 6 veryyyy excited 🚀🚀🚀😁😁😁😁

  • @SinchanaSinchu-zh3yn
    @SinchanaSinchu-zh3yn 3 месяца назад +2

    For very Frist time this much excited and curious about learning computer language❤

  • @Entertainment-nk8to
    @Entertainment-nk8to 9 дней назад

    dir(list)-->To check the list methods

  • @BhavanaAR-r4v
    @BhavanaAR-r4v Месяц назад

    Very use full topic

  • @karthikgowda-d9p
    @karthikgowda-d9p Месяц назад

    Thanks bro v4 completed🧡❤

  • @sindubanavasi584
    @sindubanavasi584 3 месяца назад +4

    Absent due to internals ...
    But now present sir...😊

  • @googlyappu
    @googlyappu 3 месяца назад +1

    Thank you for the wonderful class bro 😊, waiting for next class❤

  • @krishnan3006
    @krishnan3006 3 месяца назад +5

    💥💥💥# HOMEWORK
    # 1.listManipulation
    list=["book","pencil",46,"lalptop",5]
    print(list)#printing the list
    list.append("bike")#added new item to the end of the list
    list.insert(1,"friend")#added new item to the second position of the list
    print(list)
    list.pop(2)#Removing third item from the list
    print(list)
    #OUTPUT
    '''
    ['book', 'pencil', 46, 'lalptop', 5]
    ['book', 'friend', 'pencil', 46, 'lalptop', 5, 'bike']
    ['book', 'friend', 46, 'lalptop', 5, 'bike']'''

  • @SoundaryakrSoundu
    @SoundaryakrSoundu Месяц назад

    Very well explained

  • @Shruti2028
    @Shruti2028 3 месяца назад +1

    Present, and thank you brother

  • @RanjithRanjith-wj9tu
    @RanjithRanjith-wj9tu 3 месяца назад +1

    Complete ❤💪

  • @Gollalsm
    @Gollalsm 3 месяца назад +4

    Attendance ❤

  • @marktawin111
    @marktawin111 2 месяца назад +1

    You are great bhai ✨

  • @sachinrai6778
    @sachinrai6778 3 месяца назад

    Day by day very excited...keep teaching bro🎉🎉❤❤

  • @Deepak.Yaliwal
    @Deepak.Yaliwal 3 месяца назад +1

    #Lec 5 Done ✅

  • @basavarajkbasva5613
    @basavarajkbasva5613 3 месяца назад

    Left and right shifts are soooo easy bro 😊

  • @Theeditor-x5v
    @Theeditor-x5v 3 месяца назад +1

    Attendance😊

  • @RamyaMohan-y2e
    @RamyaMohan-y2e 2 месяца назад

    Attendance 👍

  • @igfriday124
    @igfriday124 3 месяца назад

    Very informative ❤

  • @karthikkammar_
    @karthikkammar_ 3 месяца назад

    It's is very helpfull

  • @varshamg-o6r
    @varshamg-o6r 3 месяца назад

    Very helpful

  • @TejasTejas-nf8gu
    @TejasTejas-nf8gu Месяц назад

    Indexing mele seperate video madi Anna👏👏

  • @SHIVU__FF__17
    @SHIVU__FF__17 3 месяца назад +4

    "Focus on WIN , not on Competitors💀🗿"

  • @Nandinids18
    @Nandinids18 3 месяца назад +2

    Present bro❤❤

  • @HemaSR-hk3yb
    @HemaSR-hk3yb 3 месяца назад +1

    Present sir....redy to learn

  • @KanchanaThammaiah
    @KanchanaThammaiah 3 месяца назад +1

    Please do one session about index and positioning

  • @ShashankVR-z1s
    @ShashankVR-z1s 2 месяца назад

    very interesting

  • @Bhatkal1991
    @Bhatkal1991 Месяц назад

    Please make separate video on indexing.

  • @Savita_Chougala
    @Savita_Chougala 3 месяца назад

    Thanks bro😊.....

  • @soujanyand8100
    @soujanyand8100 3 месяца назад

    Thanks brother

  • @deekshitha18-9
    @deekshitha18-9 3 месяца назад

    Happy learning phase 😊

  • @sushmaganigar8838
    @sushmaganigar8838 3 месяца назад

    very impressive to saw this video
    next video pls

  • @Boltz-yu4bn
    @Boltz-yu4bn 3 месяца назад

    28:56 iguess string is converted into int data type and then added and prints the output

  • @sugandhaYoutubechannel
    @sugandhaYoutubechannel Месяц назад

    Present sir ✋😊

  • @Kannadacontentsfromkarnataka
    @Kannadacontentsfromkarnataka 27 дней назад

    100k soon🎉

  • @krishnan3006
    @krishnan3006 3 месяца назад

    Thanks🎉

    • @krishnan3006
      @krishnan3006 3 месяца назад

      # HOMEWORK
      # 1.listManipulation
      list=["book","pencil",46,"lalptop",5]
      print(list)#printing the list
      list.append("bike")#added new item to the end of the list
      list.insert(1,"friend")#added new item to the second position of the list
      print(list)
      list.pop(2)#Removing third item from the list
      print(list)
      #OUTPUT
      '''
      ['book', 'pencil', 46, 'lalptop', 5]
      ['book', 'friend', 'pencil', 46, 'lalptop', 5, 'bike']
      ['book', 'friend', 46, 'lalptop', 5, 'bike']'''

  • @Diganthgowda.A
    @Diganthgowda.A 2 месяца назад

    Today present 👋🏻 Day 2

  • @Fun-time1
    @Fun-time1 3 месяца назад +1

    Please try to complete this course as soon as possible ❤

  • @WKT333
    @WKT333 Месяц назад

    Bro you teach EC related topics 😊

  • @sachinrai6778
    @sachinrai6778 3 месяца назад

    Home Work 3: Code
    my_list = [1, 2, 3, 4, 5] # Create a list of elements
    my_tuple = tuple(my_list) # # Convert list to tuple
    my_set = set(my_list) # Convert list to set
    print("List to Tuple:", my_tuple)
    print("List to Set:", my_set)
    my_set.add(6) # adding element to set

    print("List to Set after add:", my_set)

  • @Cloudy_sky079
    @Cloudy_sky079 3 месяца назад

    6th session ❤🎉

  • @supriths017
    @supriths017 3 месяца назад

    Day 6 present 🚀🔥❤️

  • @Cloudy_sky079
    @Cloudy_sky079 3 месяца назад

    Sir do u remember iam that student who told to concentrate on biology student but now i can say that I can manage it is not too tough if we practice more ❤💯

  • @rakshitgudigar8574
    @rakshitgudigar8574 Месяц назад

    AS SIMPLE AS THAT

  • @shashanky6788
    @shashanky6788 3 месяца назад

    bro please make a complete vidio on slicing and manupalation and why we will not consider last index

  • @Boltz-yu4bn
    @Boltz-yu4bn 3 месяца назад +2

    5:40 the voice crack hit hard broo

    • @EngineeringinKannada
      @EngineeringinKannada  3 месяца назад +1

      🥹❤️

    • @Boltz-yu4bn
      @Boltz-yu4bn 3 месяца назад +1

      @@EngineeringinKannada bro at 23:19 you have bymistakenly said wrong ..about slicing concept, am i correct?

  • @deepakundaragi3950
    @deepakundaragi3950 3 месяца назад

    Attendance day 5❤

  • @ishwarya.rk1101
    @ishwarya.rk1101 3 месяца назад

    Day 6 Present bro❤

  • @rachankumarchettimada5853
    @rachankumarchettimada5853 2 месяца назад

    #Q1
    num1=[22,44,55,77,88]
    num1.append("66")
    print(num1)
    num2=[1,2,3,4,5]
    num2.insert(2,"7")
    print(num2)
    num3=[0,9,8,7,6]
    num3.remove(8)
    print(num3)
    #Q2
    num4=[0,8,6,4,2]
    num4.sort()
    print(num4)
    num5=[9,7,5,3,1]
    num5.reverse()
    print(num5)

  • @MILLIONAIRE651
    @MILLIONAIRE651 3 месяца назад +1

    sir super day :-06 present

  • @bhuvaneshbhuni5383
    @bhuvaneshbhuni5383 3 месяца назад +3

    Bro please make video on chatgpt ,bro when you are free please broo

  • @srujanat17
    @srujanat17 3 месяца назад

    Day 6 present bro❤

  • @krishnan3006
    @krishnan3006 3 месяца назад +8

    💥💥#2.nested list challenge
    list=[[1,2],[3,4]]
    print(f"{list[0]}
    {list[1]}")#prints the entire matris row by row
    print(f"The sum of first row is:{sum(list[0])}")#sum of 1st row
    print(f"The sum of second row is:{sum(list[1])}")#sum of 2nd row
    #OUTPUT OF 2.
    [1, 2]
    [3, 4]
    The sum of first row is:3
    The sum of second row is:7

  • @ambrishac5054
    @ambrishac5054 2 месяца назад

    Put some more videos in indexing in python with some more examples

  • @SakshiShetty-i7s
    @SakshiShetty-i7s 3 месяца назад

    Present sir ❤

  • @samith-n7y
    @samith-n7y 3 месяца назад

    after this course please do videos on html css javascript to make websites

  • @MRKantha
    @MRKantha 3 месяца назад +1

    Day 2 completing 3 video per day 😅

  • @the_name_is_naveenbasavaraddi
    @the_name_is_naveenbasavaraddi 3 месяца назад

    Present anna 😊

  • @thomasshelby-dg2jq
    @thomasshelby-dg2jq 3 месяца назад +2

    indexing vedio please

  • @RameshaShimoga
    @RameshaShimoga 3 месяца назад

    Part 5 attended

  • @hemashreek5374
    @hemashreek5374 3 месяца назад

    part 5 - "As Simple As That"👍

  • @SanjanaHarish-v4v
    @SanjanaHarish-v4v Месяц назад

    Day one

  • @thetrading2024
    @thetrading2024 3 месяца назад +2

    I feel like you're worth my college fees, bro.

  • @kirans1715
    @kirans1715 3 месяца назад +1

    Nice guru, but confusion logic of and, or result. But really learning

  • @pavan2005pa
    @pavan2005pa 3 месяца назад

    I am present🎉

  • @Sujith-b9l
    @Sujith-b9l Месяц назад

    print("as simple as that")

  • @preetishebannavar3464
    @preetishebannavar3464 3 месяца назад

    Day 6🎉

  • @SanjayaGouda-h7y
    @SanjayaGouda-h7y 3 месяца назад

    Present❤

  • @SangeethaSangeetha-s7m
    @SangeethaSangeetha-s7m 3 месяца назад

    Day 6 present😊

  • @kanchanadm7505
    @kanchanadm7505 2 месяца назад

    Indexes topic explain please

  • @yashurm3243
    @yashurm3243 2 месяца назад

    Index

  • @TimesofDivya
    @TimesofDivya 2 месяца назад

    Index video madi bruh ❤️

  • @kusuma_03
    @kusuma_03 3 месяца назад

    Day-6✅

  • @quotesbyexperience4897
    @quotesbyexperience4897 3 месяца назад

    Present sir 🙋

  • @UllasL-bs1kq
    @UllasL-bs1kq 2 месяца назад +1

    Pop gu and remove gu yan difference bro....???

  • @ShreyasPerumal
    @ShreyasPerumal 2 месяца назад

    Index bagge video maadi bro

  • @AmulyaAmmu-k5z
    @AmulyaAmmu-k5z 3 месяца назад

    Day 5❤

  • @scarBNR
    @scarBNR 2 месяца назад +1

    Brother exam marks important agutha

  • @ThanuShree-o8i
    @ThanuShree-o8i 3 месяца назад

    Present 😊

  • @THARUNYS
    @THARUNYS 2 месяца назад

    Indexing

  • @TitesTites-i8m
    @TitesTites-i8m 3 месяца назад

    Yes bro 4👍🏼

  • @sachinrai6778
    @sachinrai6778 3 месяца назад

    Home Work1: Code tuples
    item=("Hai", "chandan", "How", "are", "you") # creating 5 element tuple
    print(item)
    print(item[1:3]) # slicing 2nd & 3rd elememts only
    item2=("hai", "sachin", "i", "am","super","thank", "you")#
    new_tup=(item + item2)
    stng_tup= " ".join(new_tup) # Concatenate the tuple with another tuple for sting
    print(stng_tup)
    ########
    num1=(1,2,3,4,5,6)
    num2=(18,21,48,56)
    new_num= num1+num2 #Concatenate the tuple with another tuple.
    print(new_num)

  • @rahuln4804
    @rahuln4804 3 месяца назад

    done day 5

  • @BindushreeLR
    @BindushreeLR 2 месяца назад

    Bro I checked sum function for different data type .
    It is working for numbers, boolean datatype and it is not working for string data type, nested list.
    It is working only when the list contains similar data type.

  • @SURAJ-zu8ps
    @SURAJ-zu8ps 3 месяца назад +8

    Yappa ....!! Yen Sakath agi heli kodtira bro 🫡🫡❤❤ clg alli devrane arta agirlilla... niv Kalsi kodta idira .. thank you bro 🫶

  • @sathishvs6750
    @sathishvs6750 3 месяца назад

    Hi bro good evening

  • @nischaykumar9409
    @nischaykumar9409 3 месяца назад

    Present !

  • @ChaitanyaG-m9p
    @ChaitanyaG-m9p 3 месяца назад

    Attendence🙋

  • @kwickff5915
    @kwickff5915 18 дней назад

    Bro adu starting alli item antha type madidre color change agthillla , error thorsthide

  • @JyothiJyothimc-i9u
    @JyothiJyothimc-i9u 3 месяца назад

    Day 6🥳

  • @kannadacomedyclub
    @kannadacomedyclub День назад

    Bro items.pop() instead of this we can use items.remove().??

  • @Manasa.D-hv6vs
    @Manasa.D-hv6vs 3 месяца назад

    Present😊

  • @VikasC-j9m
    @VikasC-j9m 3 месяца назад

    Present ✋

  • @archuniki5613
    @archuniki5613 15 дней назад

    Bro oops concept madi

  • @AnandPattar-t4x
    @AnandPattar-t4x 3 месяца назад

    sir plz java classes madi

  • @team_rcb018
    @team_rcb018 3 месяца назад +1

    Day 7 attedance

  • @RajathaVasanth
    @RajathaVasanth 3 месяца назад

    Can you upload 2 videos daily please for python

  • @ambiambika3673
    @ambiambika3673 16 дней назад

    We don't use commas in matrix