CloudyML

What will the output of the following code snippet be?

for i in range(1, 6):
if i % 2 == 0:
print(i, end=' ')
else:
continue

4 months ago | [YT] | 7