Wednesday, July 28, 2021

Python 102: Lambda Functions

Lambda Functions are anonymous functions, I.e. functions without names.

It's syntax:
lambda arguments : expression

Lambda can take multiple arguments but only one expression.


No comments:

Post a Comment

HTML 101: Form

  I believe that everyone who has made use of the internet knows what a form is but in case you don't know, a form is a way of receiving...