i=1while i < 10 : ? ?j=1 ? ?while j <= i : ? ? ? ?print("%d*%d=%d\t"%(j,i,j*i),end='') ? ? ? ?j+=1 ? ?print() ? ?i+=1