Map, Filter and Reduce in Python | Advanced Python in Hindi

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

keep working hard boss...you will soon have 1M subscribers. I started learning Python bcoz you teach it. Learning python is currently hobby, that's bcoz of you. Start making videos in english also for those who doesnt understand hindi.

thestranger
Автор

now i understood the logic behind reduce function.tq harry bhai

badrip
Автор

The one who can give Detailed and Quick tutorial is a legend, so you.

krishnashukla
Автор

# Difference Between map and filter
def gt(n):
if n> 2:
return True
else :
return False
nums = [11, 3, -4, 1, 2]

# below map
gr = list(map(gt, nums ))
print(gr)


# below filter
gr = list(filter(gt, nums ))
print(gr)
""" Out put
[True, True, False, False, False] #map
[11, 3] #filter
"""

Kiran.Kumar-N_Biradar
Автор

Thank you Sir.Its a Very important video for me for improving logic

swatijadhav
Автор

Hey, I wanna suggest you to make a video on sort the list/ dictionary on the basis of second element in list/dict
Eg:-[(1, 2), (45, 78), (3, 4)]

shivamchauhan
Автор

bhai acha ja rahey ho ....Tkinter pe pura ka pura playlist bana maja GOOD LUCK

dhirazz
Автор

Hey, Please make docker tutorial videos, your initial docker introduction video was very nice.(y) Keep up the good work.

niharikasinha
Автор

It's like numpy array where we don't need to iterat every value for operation

madannikalje
Автор

Hey Harry, please make series of django Framework tutorial.

aalamgeerrana
Автор

Why would I use reduce if I can use *args to get the same output??

thatHandsomeGeek
Автор

Hi Harry, great work, I am following your videos but one point need to be clear in these videos:
map, filter & reduce, when we use any other function within these function, why don't we use as a function i.e. sum_num in reduce, if I would be using this function alone: print(sum_num(2, 4)) but when we would be using in reduce, we use only name without paranthesis ???
Can you please explain this as well...???

ItsRanaJee
Автор

What is the difference between map() and reduce()...?
Both are doing same thing... 🤔

subrataghosh
Автор

Sir Explanation is awesome ❤️
But Source Code is Not Available 🙄

iamaniketkr
Автор

bhai inko loops ki tarah use kia jaa skta h na

MoHitYaDav-myqk
Автор

Sir machine and artificial intelligence per video

meetjani
Автор

Bhai Chat bot Banana Hai Python ke lye.. modules ky Use Karu?

RohanDasRD
Автор

Bhai pygame ki series bnao or pura pygame module sikhao

godisgreat
Автор

Sir, please share a link of creating the python program for assembling Stephan Hawking video..

vishalkarhade
Автор

bro apane list me tyype cast kara map samjhate waakt ....but numbers=map(int, input().split())
ye command se mujhe direct ek list mil jaa rhi h, why?

adityasuman
welcome to shbcf.ru