用Python打印乘法口诀表

for i in range(1, 10):
    print " ".join(["%d*%d=%d" % (j, i, i*j) for j in range(1, i+1)])


用Python打印乘法口诀表_第1张图片

你可能感兴趣的:(python)