Python Chapter 7 Flashcards
1
Q
multiple assignment:
A
Making more than one assignment to the same variable during the execution of a program.
2
Q
update:
A
An assignment where the new value of the variable depends on the old.
3
Q
decrement:
A
An update that decreases the value of a variable.
4
Q
iteration:
A
Repeated execution of a set of statements using either a recursive function call or a loop.
5
Q
initialization:
A
An assignment that gives an initial value to a variable that will be updated.
6
Q
increment:
A
An update that increases the value of a variable (often by one).
7
Q
infinite loop:
A
A loop in which the terminating condition is never satisfied.