There is a quiz on Coursera that I cannot understand
i = 1
while i % 3:
print(i, end = ' ')
if i >= 10:
break
i += 1
I expect the output is 1,2,3,4,5,6,7,8,9, but the actual output is 1 2. I do not understand what is 'while i % 3', can someone explain this?