Python Features Index
Python Features Index
Section titled “Python Features Index”Use this page when you want focused feature guides instead of chapter-style basics.
Function and Parameter Features
Section titled “Function and Parameter Features”| Feature | Guide |
|---|---|
*args and **kwargs / splat operator | Open |
| Positional-only parameters | Open |
| Keyword-only parameters | Open |
| Type hints | Open |
| Protocols | Open |
typing_extensions | Open |
Data Modeling and Containers
Section titled “Data Modeling and Containers”| Feature | Guide |
|---|---|
dataclasses | Open |
namedtuple | Open |
OrderedDict | Open |
ChainMap | Open |
collections module | Open |
| Property decorator | Open |
Control, Context, and Exceptions
Section titled “Control, Context, and Exceptions”| Feature | Guide |
|---|---|
| Context managers | Open |
with ... as | Open |
raise ... from | Open |
| Generators | Open |
| List comprehensions | Open |
| Walrus operator | Open |
Language Details
Section titled “Language Details”| Feature | Guide |
|---|---|
| f-strings | Open |
global | Open |
itertools | Open |
| Magic methods | Open |
| Metaclasses | Open |
| Ellipsis | Open |