1 i=1 2 while i <= 9: 3 j=1 4 while j <= i: 5 print('%d*%d=%-2d'%(j,i,i*j),end=' ') 6 j+=1 7 print() 8 i+=1