下面Python代码执行后的输出是( )。
for i in range(10):
if i % 2:
break
print("0", end = "#")
else:
print("1",end = "#")
0
0#
0#0#1
没有输出