下面的Python代码执行后,将输出( )。
>for i in range(-2, 2): if i: print(i, end = "#")
-2#-1#1#
-2#-1#0#1#
-2#-1#1#2#
-2#-1#0#1#2#