Learn Python FILTER() in 3 minutes! 🧹

preview_player
Показать описание
#pythonprogramming #pythontutorial #python

# filter(condition, collection) = return all elements that pass a condition
Рекомендации по теме
Комментарии
Автор

# filter(condition, collection) = return all elements that pass a condition

grades = [91, 32, 83, 44, 75, 56, 67]

passing_grades = list(filter(lambda grade: grade >= 60, grades))

print(passing_grades)

BroCodez
Автор

love your python tutorials. not only is it good for beginners, but its good for any experts who didnt know about the new stuff

hybridclasher
Автор

Very clear and concise explanation. Thanks!

learnapply
Автор

How do you feel about using
60.__ge__
As the function?

DrDeuteron
Автор

will this video be added to your python playlist?

Abdullo_
Автор

Could you try making a CSS course in 1 hour?

kevingamehouse
Автор

Hey bro code can u do us symfony please

anasselkaouri