(Hackerrank) HackerRank Python Certification Practice Test

โ–ถ

Hackerrank - HackerRank Python Control Flow and Looping Questions and Answers 1

Free ยท Instant Results

What is the output of the following Python code snippet? ```python for i in range(5): if i == 3: continue print(i, end=' ') else: print('Loop finished', end='') ```
โ–ถ Start Practice Test