运行下面程序,输出的结果是( )。
for i in range(3): for j in range(4): print(i, end = ' ') print()
1 1
2 2
3 3
4 4
0 0 0
1 1 1
2 2 2
1 2 3
0 0 0 0
1 1 1 1
2 2 2 2