python打印乘法口诀表 for i in range(1,10): for j in range(1,i+1): print('%sx%s=%s' % (j,i,j*i),end='') print() 欢迎大家观看视频教程:Python入门到进阶