chapter 3: Iterating and Making Decisions

3.1 Conditional programming

3.1.1 Linux

Automatic Install Script

$ sudo wget -qO- https://get.docker.com/ | sh

remove hell-world

$ sudo docker rm `sudo docker ps -aq`
$ sudo docker rmi hello-world

.

3.2 Looping

3.3 Putting this all together

3.4 A quick peek at the itertools module

3.5 Summary