Python Keywords Flashcards

0
Q

while

A

controlling the flow of the program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

print

A

print to console

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

for

A

iterate over items of a collection in order that they appear

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

break

A

interrupt the (loop) cycle, if needed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

continue

A

used to interrupt the current cycle, without jumping out of the whole cycle
New cycle will begin

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

if

A

used to determine, which statements are going to be executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly