Links added. TOC

This commit is contained in:
David Beazley
2020-05-26 17:52:06 -05:00
parent 08f982aa1f
commit 73d08eca49
9 changed files with 199 additions and 78 deletions

View File

@@ -1,9 +1,19 @@
# Overview
# 7. Advanced Topics
In this section we will take a look at more Python features you may encounter.
In this section, we look at a small set of somewhat more advanced
Python features that you might encounter in your day-to-day coding.
Many of these topics could have been covered in earlier course
sections, but weren't in order to spare you further head-explosion at
the time.
* Variable argument functions
* Anonymous functions and lambda
* Returning function and closures
* Function decorators
* Static and class methods
It should be emphasized that the topics in this section are only meant
to serve as a very basic introduction to these ideas. You will need
to seek more advanced material to fill out details.
* [7.1 Variable argument functions](01_Variable_arguments)
* [7.2 Anonymous functions and lambda](02_Anonymous_function)
* [7.3 Returning function and closures](03_Retuning_functions)
* [7.4 Function decorators](04_Function_decorators)
* [7.5 Static and class methods](05_Decorated_methods)
[Contents](../Contents)