(Hackerrank) HackerRank Python Certification Practice Test

Hackerrank Control Flow and Looping 2

Free · Instant Results

What is the output of the following code? ```python for i in range(10): if i % 2 == 0: continue if i > 6: break print(i) ```
▶ Start Practice Test