*************************** Topic 3 - Flow of Control *************************** We have already seen an introduction the use of :keyword:`if` -- :keyword:`else`, :keyword:`for` loops and :keyword:`while` loops to control the flow of our program. In this chapter we will: - Study some additional constructs for controlling the flow of a program. - Study in more detail the relational and logical operators which are used in forming control logic for a program. **Content** .. toctree:: :maxdepth: 2 booleans selection loops style