diy2.py 132 Bytes Edit 1 2 3 4 5 6 for i in range(1,10): for j in range(1,10): print(j,'x',i,'=',i*j,end='') if i==j: break print()