实现代码:# 九九乘法表 for i in range(1, 10): for j in range(1, i+1): print('{}x{}={}\t'.format(j, i, i*j), end='') print()登录后复制输出结果如下: 推荐教程:python教程