Introduction to Programming with Python: Lambda Functions and Map, Filter, Reduce

Sdílet
Vložit
  • čas přidán 16. 08. 2023
  • This video provides an introduction to lambda functions in Python. Specifically, it covers:
    -Reviewing what a function and how a function refers to an object
    -What a lambda function is and why you would use one
    -Lambda function syntax
    -Several examples of lambda functions, including map, filter, and reduce
    -Practice problems!!
    This video is the seventeenth video in a multi-part series on getting started with the Python programming language. Next video in the series: • How to Web Scrape usin...
    Source code on Github: github.com/gsprint23/Python-D...
  • Jak na to + styl

Komentáře • 2

  • @---------------__
    @---------------__ Před 10 měsíci

    very good implemented the examples 👍👍

  • @technicallycorrect838
    @technicallycorrect838 Před 10 měsíci

    Nice tutorial about lambda which brought to my attention that I don't really use map, reduce or filter a lot.
    I'm wondering if using them is slower or faster than using list comprehensions. Will have to experiment a bit.