Preskoči na glavni sadržaj
Prijava
Sign up for FREE
arrow_back
Biblioteka

Exit Ticket For loop

star
star
star
star
star
Posljednje ažuriranje over 2 years ago
8
1
1
1
1
1
1
1
1
Pitanje 1
1.

What does a for loop do in Python?

Pitanje 2
2.

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

Pitanje 3
3.

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

Pitanje 4
4.

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

Pitanje 5
5.

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

Pitanje 6
6.

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

Pitanje 7
7.

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

Pitanje 8
8.

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