下列语句的输出结果是?( )
for i in 'xyz':
for j in range(1,3):
print(i,end='')
if i=='z':
break
xxyzz
.xxyyzz
xxyy
xxyyz