1 for i in range(1,10): 2 for j in range(1,i+1): 3 print('{}*{}={}\t'.format(i,j,i*j),end='') 4 print()