Topic 2 Flashcards
simple conditional statements use …
compound conditional statements use …
if
if, and/or operators (boolean logic)
hungry … eval (input(“Are you hungry (True/False)?”))
if hungry … True
=
control flow can use
if, elif, else
2 types of loops and when you use them
for - know number of iterations
while - unbounded number of iterations
use of breaks
immediately terminates loop
skips remaining expressions in code block
exits only inner most loop
if
if condition is true, run this block of code
elif
else if these conditions are true, run this block of code
else
f none of the above are true, run this block of code
for
known number of iterations, can end early with a break condition
while
unbounded number of iterations but know a break condition
%
used to find remainder of division