Python Keywords Flashcards
0
Q
while
A
controlling the flow of the program
1
Q
A
print to console
2
Q
for
A
iterate over items of a collection in order that they appear
3
Q
break
A
interrupt the (loop) cycle, if needed
4
Q
continue
A
used to interrupt the current cycle, without jumping out of the whole cycle
New cycle will begin
5
Q
if
A
used to determine, which statements are going to be executed