Summary: Sources of Function Objects
Here's a quick summary of various methods to create function objects.
We'll cover the following...
We'll cover the following...
To summarize, here are the various ways you can obtain function objects to use in your code:
-
Built-in functions, such as
len
,min
,abs
etc. For example,len(s)
calls thelen
function to find the length ofs
, butlen
...