下列语句的输出结果是? ( )
for i in “xyz” :
for j in range(3):
print(i,end=‘ ‘ )
if i==” z” :
break
xxxyzzz
xxxyyyz
xxxyyyzzz
xyyyzzz