LogoYasir Bhutta
30:00
Question 1
1/9

What is the output of the following code snippet?

Python
for i in range(5):
    if i == 3:
        continue
    print(i)