Q. Write the output of the following:
Code:
for l in range(3):
if l == 2:
continue
else:
print("i",end = " ")
else:
print("Here")
β
Correct Answer: (B)
i i Here