使用Python打印乘法口诀
效果图:
python代码:
for i in range(1,10): for j in range(1,i+1): print("%d*%d=%-2d"%(i,j,i*j),end=" ") print(" ")