Python Statements Flashcards
1
Q
assignment
A
create a variable and provide a value (object)
2
Q
while
A
more general loop, executes while boolean expression evaluates to true. indefinite iteration
3
Q
for
A
for convenient repetition (iteration) of statements in the loop body. processes each item in a list. definite iteration
4
Q
if
A
conditional
5
Q
import
A
brings in the contents of a module, making its statements and definitions available to the program
6
Q
del
A
deletes elements from lists, dictionaries