Automate the Boring Stuff with Python: Practical Programming for Total Beginners
Rate it:
3%
Flag icon
Countless books, interactive web tutorials, and developer boot camps promise to turn ambitious beginners into software engineers with six-figure salaries. This book is not for those people. It’s for everyone else.
4%
Flag icon
Programming is simply the act of entering instructions for the computer to perform.
4%
Flag icon
The name Python comes from the surreal British comedy group Monty Python, not from the snake. Python programmers are affectionately called Pythonistas, and both Monty Python and serpentine references usually pepper Python tutorials and documentation.
4%
Flag icon
Like solving a Sudoku puzzle, writing programs involves breaking down a problem into individual, detailed steps.
4%
Flag icon
Programming is a creative task, somewhat like constructing a castle out of LEGO bricks.
5%
Flag icon
You’ll remember the things you do much better than the things you only read.
7%
Flag icon
Variable names are case-sensitive, meaning that spam, SPAM, Spam, and sPaM are four different variables. It is a Python convention to start your variables with a lowercase letter.