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,absetc. For example,len(s)calls thelenfunction to find the length ofs, butlen...