diy1.py 108 Bytes Edit 1 2 3 4 5 for i in range(1,10): for j in range(1,i+1): print(j,"×",i,"=",(i*j),end=" ") print()