May 2021
Intermediate to advanced
142 pages
3h 37m
English
The chapters in this book start with a broad focus that grows increasingly specific as you build a more nuanced understanding of Python:
You’ll start in Chapter 1, Diving into Life with Python by running code in Python’s interactive console, debugging it using Python’s built-in debugger, and automatically eliminating classes of bugs before you run code with static analysis tools, including mypy.
Next in Chapter 2, Shifting Up with the Standard Library, you’ll use some of the most powerful and practical parts of Python’s standard library. Profile your procedures with Python’s built-in profiler, execute external programs with Python’s high-level subprocess harness, and write concise code using the collections module.
With some ...