Python Practice Test

โ–ถ

Python Control Flow: Loops 5

Free ยท Instant Results

What is the output of: ``` for i in range(1, 6): if i % 2 == 0: continue print(i, end=' ') ```
โ–ถ Start Practice Test