
Automate the Boring Stuff with Python
In this fully revised third edition of Automate the Boring Stuff with Python, you’ll learn how to use Python to write programs that do in minutes what would take you hours to do by hand—no prior …
2nd Edition - Automate the Boring Stuff with Python
Introduction Chapter 1 – Python Basics Chapter 2 – Flow Control Chapter 3 – Functions Chapter 4 – Lists Chapter 5 – Dictionaries and Structuring Data Chapter 6 – Manipulating Strings Chapter 7 – …
3rd Edition - Automate the Boring Stuff with Python
Chapter 1 - Python Basics Chapter 2 - if-else and Flow Control Chapter 3 - Loops Chapter 4 - Functions Chapter 5 - Debugging Chapter 6 - Lists Chapter 7 - Dictionaries and Structuring Data Chapter 8 - …
Chapter 1 - Python Basics, Automate the Boring Stuff with Python, 3rd Ed
Most of this book’s examples (and Python’s documentation) use generic variable names like spam, eggs, and bacon, which come from the Monty Python “Spam” sketch.
Automate the Boring Stuff with Python
Using the interactive shell is great for learning what basic Python instructions do, so give it a try as you follow along. You’ll remember the things you do much better than the things you only read.
AUTOMATE THE BORING STUFF WITH PYTHON
The first part of this book covers basic Python programming concepts, and the second part covers various tasks you can have your computer automate. Each chapter in the second part has project …
Automate the Boring Stuff with Python
Using the interactive shell is great for learning what basic Python instructions do, so give it a try as you follow along. You’ll remember the things you do much better than the things you only read.
2FLOW CONTROL - Automate the Boring Stuff
As you gain more programming experience, you’ll become more aware of the standard names used by Python’s modules and functions, and will run into these problems less frequently.
Chapter 0 - Introduction, Automate the Boring Stuff with Python, 3rd Ed
You’ll find a complete introduction to SQLite and relational databases with Python’s sqlite3 module. You’ll explore how to compile Python scripts into executable programs on Windows, macOS, and …
Chapter 3 - Loops, Automate the Boring Stuff with Python, 3rd Ed
Python’s two kinds of loops, while and for, open up the full power of automation, because they can run lines of code millions of times per second. You’ll also learn how to import code libraries, called …