Unordered list, go all the way to the end
[search-1c.py]
Ordered list, stop when word is excluded
[search-2c.py]
True and False
Really, 0 an 1
In tests: non-zero or non-empty is True, zero or empty is False
while, else, break, return
else is associated with if or try
... except, neverwhile (if condition in
while is false, the loop is not traversed, and
control passes to the next statement)
returnmust be within a function
(not a while loop, unless that is in a function)