阅读下面代码,正确的输出是( )
i =2 while True: if i % 3 ==0: break print(i,end='') i +=2
2 4 6 8 10…..
2 4
2 3
Error