Map, Filter & Reduce | Python Tutorials For Absolute Beginners In Hindi #48

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

ความคิดเห็น • 1.4K

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

    I'm still learning from this tutorial
    I downloaded the whole playlist into my pc because I am a mobile data user
    Love u Harry bhai
    Name Hassan Faizan

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

    I am watching your python playlist from starting HARRY

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

      Me too, i started last week

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

      Me to

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

      only one video only map reduce

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

      Same here

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

      @@rajkushwahar now you learned full python?

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

    I am watching the playlist from beginning without skipping a single video because of the very first video in which you said that after this full play list we will be able to make "Jarvis Desktop Assistant" and that thing really became my goal and I am practicing rigorously from last 30days.....
    Thanks a lot for the way you are teaching💕

    • @successvibes1604
      @successvibes1604 3 ปีที่แล้ว

      have u made jarvis???

    • @AnkitSingh-nl1gn
      @AnkitSingh-nl1gn 2 ปีที่แล้ว

      @@successvibes1604 lol, may be he can't but he would be earning more than lakhs. thats matter alot

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

    Hi, I started watching this playlist since oct 9 . I love the way you teach Harry sir.
    And I will continue this playlist till the end :)

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

    watching from beginning in lockdown 2020 and loving it....

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

    Mene dekhaa hai roj ke 3 video dekhtaa hu or practise bhiii 😎😎😎😎 ty harry bhai for this video

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

    I'm too late but still continuing this this so helpful
    MAine pura dekha h aur dekhugi
    That's so nice sir

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

    Hi ,harry my two friends and me started learning Python from this playlist we are doin this course from starting .
    A big Thank to you for this playlist

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

    Yes , I am following this course from the start , will watch till the end. Thanks for these videos. Commendable work Harry Bhai. Love from Pakistan

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

    Maine dekha hai start se
    Pura and sare exercise bhi kiya hai and and samjh nhi aaya to 2-2 bar bhi dekha hai😊😊
    You are a good teacher..

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

    Name: Yash Vishwakarma
    Sir honestly from starting of course I am watching all video

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

    i am Rohan and i am following this tutorial from the first video and you are the best teacher to learn coding "You are the best Sir" Hatts of to you Harry sir .
    I am 14 years old then also i am able to understand coding Thank you so much sir

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

    Sir am continuing this course please carry on thanks a lot for this , It is very helpful sir . Thanks a lot

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

    Harry Bhai yhan tk sare video dekhi h...and sath m practice b ki h

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

    it's second time to watched this video
    i got actual concept of map,reduce and filter
    thanks Harry Bhai

    • @coder_rc
      @coder_rc 4 ปีที่แล้ว

      same

    • @yashrawat747
      @yashrawat747 3 ปีที่แล้ว

      hi can you tell me the difference between map function and filter function

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

    "Nothing to lose. A lot to gain."

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

    Hey Harry! Hope u doin good bro. Firstly, I wanna say thank you for making such amazing videos. The way you explain the deep concepts in a short video, ammm without taking much time, is very impressive. I have been watching your videos from the beginning of this series and I believe that I will be doing same in future and even, I can feel the improvement in myself from the day I begin till now.
    Hun tusi sade ustaad ban gye o :)

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

    Both reduce() and accumulate() can be used to calculate the summation of a sequence elements. But there are differences in the implementation aspects in both of these.
    reduce() is defined in “functools” module, accumulate() in “itertools” module.
    reduce() stores the intermediate result and only returns the final summation value. Whereas, accumulate() returns a list containing the intermediate results. The last number of the list returned is summation value of the list.
    reduce(fun,seq) takes function as 1st and sequence as 2nd argument. In contrast accumulate(seq,fun) takes sequence as 1st argument and function as 2nd argument.
    # python code to demonstrate summation
    # using reduce() and accumulate()

    # importing itertools for accumulate()
    import itertools

    # importing functools for reduce()
    import functools

    # initializing list
    lis = [ 1, 3, 4, 10, 4 ]

    # priting summation using accumulate()
    print ("The summation of list using accumulate is :",end="")
    print (list(itertools.accumulate(lis,lambda x,y : x+y)))

    # priting summation using reduce()
    print ("The summation of list using reduce is :",end="")
    print (functools.reduce(lambda x,y:x+y,lis))
    Output:
    The summation of list using accumulate is :[1, 4, 8, 18, 22] # last digit is the answer
    The summation of list using reduce is :22

    • @santoshpanigrahi205
      @santoshpanigrahi205 2 ปีที่แล้ว

      Thanks Umer

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

      Thank you, Umer, I got to learn something extra because of you!!

  • @dkm5412
    @dkm5412 3 ปีที่แล้ว

    Deepak here. I am watching since the beginning. What i like the most about your teaching style is the general information doses that you give. Like here you mentioned that one might code just the way he or wants lekin dusre ka code samajhne ke liye we need to know some advance aspects as well. This is a big confidence booster and honestly i didnt get it from any other tutorial. Also i never thought learning in our own native language can make such a big impact.

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

    reduce() in Python
    The reduce(fun,seq) function is used to apply a particular function passed in its argument to all of the list elements mentioned in the sequence passed along.This function is defined in “functools” module.
    Working :
    At first step, first two elements of sequence are picked and the result is obtained.
    Next step is to apply the same function to the previously attained result and the number just succeeding the second element and the result is again stored.
    This process continues till no more elements are left in the container.
    The final returned result is returned and printed on console.

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

    I am watching this course from beginning.

  • @SanjayKumar-Engineer
    @SanjayKumar-Engineer 4 ปีที่แล้ว +3

    watching this from beginning in 2020 and loving it :)
    also completing this series soon

  • @sahilpunia2122
    @sahilpunia2122 4 ปีที่แล้ว

    maine dekhe h bhai apke sare video Python Playlist ke abhi tak... bhoot sikhne ko mila.. apka boot bhoot dhanyawad bhai..

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

    Following since the beginning ...great effort by you 👍

  • @surajsingh-ct7bc
    @surajsingh-ct7bc 4 ปีที่แล้ว

    Maine iss video tak dekha hai ...
    Aur abhi isko follow kar raha hoon...
    I love your teaching ..........
    👍👍👍👍👍👍👍👍👍😀😀🤓🤓🤓🤓🤓🤓🤓🤓

  • @Avinashyadav-wt4wc
    @Avinashyadav-wt4wc 4 ปีที่แล้ว +11

    watching from the beginning in lockdown and intended to finish this whole playlist in five days with full projects , this is my second day

  • @ShivamKumar-wf3no
    @ShivamKumar-wf3no 3 ปีที่แล้ว

    i am also watching all your videos till now. you are the best teacher on youtube for programming.

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

    I am seeing the videos from starting

    • @prajwal6896
      @prajwal6896 4 ปีที่แล้ว

      @sudeep kumar 😂😂

  • @CookNitesh
    @CookNitesh 3 ปีที่แล้ว

    thnx harry bhai.....i have been religiously following ur channel....i have watch all the previous videos of this playlist....will complete the playlist....also practicing all the exercises and functions along with the videos....u r like a great guru for me.....

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

    4 playlists are already completed, this is 5th one harry Bhai...

  • @kartiksarathe2661
    @kartiksarathe2661 4 ปีที่แล้ว

    Saare dekh raha hu sir...... I'm making notes....doing homework, Practicing Python.... I'm watching your videos/Classes daily...... Thank you so much sir....now I'm very confident in Python only because of you.... thank you.

  • @Shubham-fk4is
    @Shubham-fk4is 6 ปีที่แล้ว +7

    bhai advance main.congratulations

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

    Thank u for making them

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

    we could have also done it as:
    numbers[2] = int(numbers[2]) + 1

  • @biswajitmandal2030
    @biswajitmandal2030 3 ปีที่แล้ว

    watching whole playlist from beginning and have comment in almost all the videos....got many things to learn...very useful

  • @Shubham-fk4is
    @Shubham-fk4is 6 ปีที่แล้ว +18

    bhai 83 subscriber more to make 10k. print("party to chahiye bhai") 😋😋😋😂

  • @harshwardhanchaube706
    @harshwardhanchaube706 3 ปีที่แล้ว

    harry sir.............i watched all ur vdos from start , except the vdos in which u tell the solution of the exercises, because i am able to solve them on m own......................thank u for ur efforts

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

    Hello Harry sir, you're series on python is amazing and i am following it right from 0th video and continuing. Thanks for the series!!!!!!!

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

    🔥 Adarsh Sahu

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

    Using lambda function to use filter (just another way)
    l1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
    final = list(filter(lambda x: x > 5, l1))
    print(final)

    • @samirshaikh6806
      @samirshaikh6806 4 ปีที่แล้ว

      Sir map function men def ke sath jo sq diya hai map ke aage uski value kya hongi...... Jaise num ki value muje pata hai 2 3 5 6 76 etc vese sq ki value kya hongi..?

    • @samirshaikh6806
      @samirshaikh6806 4 ปีที่แล้ว

      Filter men num kya hai sir harry sir ke video men

  • @priyanshuarya5566
    @priyanshuarya5566 4 ปีที่แล้ว

    I watch 50 videos,, because pehle mere pass laptop nhi tha, abhi mene laptop liya hai,,, or playlist dekh rha hu,,, or full dekhunga,,, or u r great sir,, best playlist,,, me aapki saari playlist dekhunga,,,, java,, c,,, html,, and all,,, reply my comment,,,, if u can,,, thanku for playlist

  • @shivampandey1871
    @shivampandey1871 2 ปีที่แล้ว

    HARRY BHAI ME APKE TARAH PROGRAMMING KI VIDEO CREATES KAR SAKTA HU APSE JO SIKHA HAI MAINE. JO BHI YAAD KYA HAI APKI VIDEO DEKH KE. YOU ARE EXPLAINING THE WAY IS NICE. IT'S REALLY HELPFUL FOR EVERY PROGRAMMER.

  • @navneetpandey4365
    @navneetpandey4365 2 ปีที่แล้ว

    harry bhai abhi tak maine aapke playlist ke sare video dekhe hai jitna bhi aapne padhaya hai 80% tak samjha hai aur aage bhi main continue karunga

  • @GamingWorld-xy7pc
    @GamingWorld-xy7pc 4 ปีที่แล้ว +1

    I'm really loving your tutorial sir.. ☺

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

    harry bhai saare videos 2-2,3-3 baar dekhra hu from begining,
    thank you so much yr bhai

  • @ayushlawrence281
    @ayushlawrence281 3 ปีที่แล้ว

    I'm following this series from the start and i love it ...........Thanks harry bhai .

  • @techsavvyinfo
    @techsavvyinfo 3 ปีที่แล้ว

    watched all in 3 months whole python
    its easy to understand python in hindi keep it up brother god bless you

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

    i m watching ur python tutorials fron starting , this tutorials r very helpful for me thank u so much for making this full course python tutorials

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

    I have watched all videos and learning a lot till here, thanks a lot harry bhai ❤️

  • @gauravgangurde7026
    @gauravgangurde7026 3 ปีที่แล้ว

    Yes harry bhai maine tumhari c++, python, java, web development course ke complete videos kiye hai..... Mujhe 100% advantage hua hai😇😇🙏🙏🙏💯

  • @paragjain6165
    @paragjain6165 3 ปีที่แล้ว

    i am watching this playlist from beginning. Apko dil s shukriya y playkist bnane k liye for free of cost.

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

    Bhai maine yaha tak pura course dekha hai aur puri playlist dekhuga.
    Thanks Harry Bhai for brining amazing content for free.

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

    while(True):
    print ('thank you harry sir!)

  • @tejendersingh8164
    @tejendersingh8164 4 ปีที่แล้ว

    started from Sept 2020 ......so far so good, Thanks man

  • @skbadsa5002
    @skbadsa5002 3 ปีที่แล้ว

    Sir, i watched your every video till now in this playlist and I am not lying

  • @technicallanguage1881
    @technicallanguage1881 4 ปีที่แล้ว

    watching this video series from beginning in lockdown 2020. keep working. Really Awesome.

  • @AB-by2ie
    @AB-by2ie 4 ปีที่แล้ว +1

    Following it from Beginning in 2020.

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

    Harry bhai 48 total video maine dekhi h avi tak
    Nd thank you soo much😊

  • @varunsharma-jg6db
    @varunsharma-jg6db 3 ปีที่แล้ว

    Harry Bhai, i have seen all your videos till this one from beginning... thanks for creating and sharing such wonderful content!

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

    Following this entire series and I am loving it!

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

    Harry bhaiya maine apki shuru se lekar ab tak sari videos dekhi h

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

    Maine dekha bro from start bro
    Thanks so much

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

    Harry bhai mene suru se yaha tak complete dekha maza aya

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

    HARRY BHAI HAMNE ZERO SE LEKAR DEKHE HAI AAPKE VIDEOS 😊EK DAM AACHE SE AAPNE SARE TOPICS KO EXPLAIN KIYA HAI❤️✨ THANKYOU

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

    Harry, I know that this playlist is quite old now but I have started watching it recently and it has definitely helped me to learn and understand python. Thanks a lot you have made learning and understanding the topics much easier

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

    17:50 I have seen all your videos from the starting of this course.❤️

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

    Watched every video of this course from the starting..

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

    I am following this course from video no.44 because the topics before 44th video, i learned that topics from your python 15 hours course.
    Harry bhai literally you are so good!

  • @gamingknight7534
    @gamingknight7534 3 ปีที่แล้ว

    Sirji maine sare vedio dekhe hai
    Thank you so much 👍👍👍👍
    Pehli baar comp. Me itna interest aa rha
    Thanks sir

  • @aakarshag1445
    @aakarshag1445 4 ปีที่แล้ว

    I have watched all the videos in this playlist till now and I will continue to watch till the end of this course!!!!

  • @meetpanchal7264
    @meetpanchal7264 3 ปีที่แล้ว

    mene dekha he abhi tak ke videos or bahot achhe se samajate he aap

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

    I watch all Videos of your playlists from starting.....

  • @kashyapibisen1769
    @kashyapibisen1769 3 ปีที่แล้ว

    ye playlist mai dekh chuki hoon ek bar ek saal pehle and now i am watching again the whole playlist...cuz it is worth

  • @AbdulSalam-pv6es
    @AbdulSalam-pv6es 2 ปีที่แล้ว

    Abdul Salam, started from the first and watch every single video and still watch your videos ahead, your videos are super easy.

  • @surajtiwari8437
    @surajtiwari8437 2 ปีที่แล้ว

    it's been around a month...watching ur videos continously...Thanku Harry bhai🙏

  • @MAYURESH-rf9uf
    @MAYURESH-rf9uf 3 ปีที่แล้ว

    I'm following this playlist start to end .....nice content

  • @vanshsiddhu578
    @vanshsiddhu578 3 ปีที่แล้ว

    Nene dekhi yahan tak saari video aur iske aage bhi dekhoonga.
    Good job.

  • @anandgp07
    @anandgp07 3 ปีที่แล้ว

    I started on Jan 13th 2022 now its my 48th video. Thank you Bhai for the video, i know all are started long back, i am too late here( by seeing the comments). but will defiantly gain good knowledge from this play list.

  • @Shonashoni1
    @Shonashoni1 4 ปีที่แล้ว

    I am watching it since beginning and really implementing it.....

  • @Dinesh-yy3so
    @Dinesh-yy3so 3 ปีที่แล้ว

    Mein ne dekha sare videos ab tak and mein ne bahoot kuch seeka bhai THANK YOU !!

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

    Nice vdo bhai👍🏿

  • @ganeshbasude6123
    @ganeshbasude6123 3 ปีที่แล้ว

    i started watching your videos from 2 weeks and i executed all the code till this video, tq bro keep posting

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

    watching this Python playlist from beginning and soon going to complete..thanx a lot Harry

  • @AllRounder-bv7iu
    @AllRounder-bv7iu 3 ปีที่แล้ว

    Harry bhai i have watched your all the videos from the begining and i promise you that i will defenetly complete this couse . thank you harry bhai for this beutiful course .
    akash from kanpur .

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

    Hey bro whats upp
    yes I am watching all videos of this playlist so that I can learn python completely and want to make awesome projects in python and also aiming to do ML in python
    Thanks Harry Bhai for this playlist
    #CodeWithHarry
    #HarryBhaiAwesome

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

    Sir my name is Ankush Saral and mai follow kar raha hu is course ko. Maine sare videos dekh liye hai yaha tak thanks sir isliye liye , python bahot easy lagne lagi hai ab mujhe 🙂.

  • @HariomSingh-ei4fb
    @HariomSingh-ei4fb 3 ปีที่แล้ว +1

    Hariom Singh yaha tak dekh raha hu aur last Tak playlist ko follow karunga
    Thanks a lot Harry bhaii😎

  • @Krutarth_Vaishnav_
    @Krutarth_Vaishnav_ 3 ปีที่แล้ว

    Watched Complete Playlist Till This.. Will Finish It For Sure

  • @harmonypreschool5378
    @harmonypreschool5378 4 ปีที่แล้ว

    Ankush K :- Bhai this is One of the best Course available on internet :) thanks for sharing knowledge.
    Watching all the videos in this playlist.

  • @parthsonagara9562
    @parthsonagara9562 4 ปีที่แล้ว

    Watched your video from the beginning Bro. You are a great Teacher.

  • @dipakmehta7096
    @dipakmehta7096 2 ปีที่แล้ว

    Mene bhi sab video do do bar dekhi he ......!!☺️🙏.....big shautout for you buddy ✌️

  • @rishabhgupta5741
    @rishabhgupta5741 4 ปีที่แล้ว

    Following your python videos from starting aur kasam kha rakhi hai python data science wali sab videos dekhna hi hai. Locked hai saari videos dekhna.

  • @sahilpatil9707
    @sahilpatil9707 2 ปีที่แล้ว

    i m watching it now and had seen all videos till now loving it

  • @priti5362
    @priti5362 4 ปีที่แล้ว

    I have been watching your videos from starting........ And enjoying it 😊

  • @tusharmeshram6403
    @tusharmeshram6403 3 ปีที่แล้ว

    i completed 49 videos..thank u harry sir ...i do not uderstand much but a litle bit...ones again thank u sir

  • @codingssprint7362
    @codingssprint7362 4 ปีที่แล้ว

    def seqare(a):
    return a*a
    def cube(a):
    return a*a*a
    func = [seqare,cube]
    num = [2,3,5,6,76,3,3,2,1]
    for i in num:
    val = list(map(lambda x : x(i),func))
    print(val)
    ye program me list me function ka use karke maja aa gaya
    super bro
    muje ye used karake achha laga

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

    I am following the corse from starting and learn a lot, so much new things

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

    Thankyou so much bhaiya🙏🏻🙏🏻🙏🏻

  • @mayurpatil6914
    @mayurpatil6914 4 ปีที่แล้ว

    Great Videos to learn from ....seeing from starting

  • @misriabikhan391
    @misriabikhan391 2 ปีที่แล้ว

    I had completed watching n trying with this videos till here ...I'll soon reach till end of this video list.