标签:com 代码 乘法表 print nbsp pre 数字 mes 循环
1、效果如下
.........
2、实现思路
3、实现代码
for i in range(1,10): for a in range(1,i+1): sum=a*i print(a,‘*‘,i,‘=‘,sum,end=‘ , ‘) a=a+1 print()
4、实现结果
标签:com 代码 乘法表 print nbsp pre 数字 mes 循环
原文地址:https://www.cnblogs.com/Subtle-967/p/12401487.html