Anonymous function: Difference between revisions

Content deleted Content added
WikiCleanerBot (talk | contribs)
m v2.05b - Bot T5 CW#16 - Fix errors for CW project (Unicode control characters - Title linked in text)
Kavuldra (talk | contribs)
Line 115:
===Higher-order functions===
 
A [[higher-order function]] is a function that takes a function as an argument or returns one as a result. This is commonly used to customize the behavior of a generically defined function, often a looping construct or recursion scheme. Anonymous functions are a convenient way to specify such function arguments. The following examples are in Python 3.
 
====Map====