Twa kɔ nsɛm atitiriw so
Log in
Sign up for FREE
arrow_back
Laabri

Exit Ticket For loop

star
star
star
star
star
Last updated over 2 years ago
8 Nsɛmmisa
1
1
1
1
1
1
1
1
Asemmisa {{asɛmmisaAhyɛnsode}}
1.

What does a for loop do in Python?

Asemmisa {{asɛmmisaAhyɛnsode}}
2.

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

Asemmisa {{asɛmmisaAhyɛnsode}}
3.

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

Asemmisa {{asɛmmisaAhyɛnsode}}
4.

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

Asemmisa {{asɛmmisaAhyɛnsode}}
5.

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

Asemmisa {{asɛmmisaAhyɛnsode}}
6.

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

Asemmisa {{asɛmmisaAhyɛnsode}}
7.

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

Asemmisa {{asɛmmisaAhyɛnsode}}
8.

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