Exit Ticket For loop

Last updated almost 2 years ago
8 questions
1

What does a for loop do in Python?

1

What is the output when you execute: `for i in range(5): print(i)` in Python?

1

Given the for loop `for i in range(2,10,2): print(i)`, what is the output?

1

How would you initialize a for loop to iterate over a list ['apple', 'banana', 'cherry'] in Python?

1

What does the 'range' function do in a Python 'for' loop?

1

What is the starting index when using a 'for' loop with the 'range' function in Python?

1

How would you write a for loop in Python to iterate from 1 to 5?

1

What is the Python for loop structure to print the numbers 3, 4 and 5?