下面的Python代码执行后的输出是?
for i in range(-2, 2): if not i % 3 == 0: print(i, end="#") print(i)
-2#-1#1#1
-2#-1#1#1#2
1#2#2
0#1#2