You are here: Home > Dive Into Python > Functional Programming > Summary | << >> | ||||
Dive Into PythonPython from novice to pro |
The regression.py program and its output should now make perfect sense.
You should now feel comfortable doing all of these things:
- Manipulating path information from the command line.
- Filtering lists using filter instead of list comprehensions.
- Mapping lists using map instead of list comprehensions.
- Dynamically importing modules.
<< Putting it all together |
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | |
Dynamic functions >> |