下面Python代码执行后的输出是( )。
for i in range(5):
for j in range(i):
print(j,end="")
0010120123
01012012301234
001012012301234
01012012301234012345