filmov
tv
Lecture 5 Boolean Variables, Conditions and Selection Control Structures - Part 1 Flow of Control

Показать описание
So far all the programs we have written are were executed in a sequential fashion, where each statement is executed once. In reality, programs are more complicated than that, because the sequence of statements and the number of time a statement is executed can vary. In this lecture will explore how to create programs that implement a selection flow control using if statements. We will begin be studying the concepts of Booleans and Conditions, then cover selection control structure in Python. In later lecture we cover the repletion flow of control.