My Python Quiz
The ultimate place to learn Python!
⌂
|
Start Quiz
|
List of questions
|
Other Quizes
Question #22:
Which numbers are printed?
for i in range(2): print(i) for i in range(4,6): print(i)
2, 4, 6
0, 1, 2, 4, 5, 6
0, 1, 4, 5
0, 1, 4, 5, 6, 7, 8, 9
1, 2, 4, 5, 6
Next Question