Iteration (for loops) Flashcards
1
Q
What are loops also known as?
A
Iteration
2
Q
What are the 2 types of loops?
A
for + while
3
Q
for loops
A
repeat things a set of times
4
Q
while loops
A
repeats something until no longer True
5
Q
for i in range (x):
A
x= integer so (10)== looping 10 times