python:打印99乘法表

for j in range(1,10): 外循环

for i in range(1,j+1): 内循环

print("%d*%d=%-2d"%(i,j,i*j),end=" ") 内循环

print()外循环

你可能感兴趣的:(python)