码迷,mamicode.com
首页 > 其他好文 > 详细

打印乘法口诀表

时间:2020-03-02 10:28:51      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:range   i+1   end   int   练习   字符   int()   for循环   使用   

练习使用for循环打印乘法口诀表

for i in range(1,10):#行循环
  for j in range(1,i+1):#列循环
    print(str(i)+"*"+str(j)+"="+‘%-3s‘%str(i*j),end=" ")#end=""列循环后不换行,‘%-3s‘左对齐占3个字符
  print()#行循环一次后换行

倒序打印乘法口诀表

for i in range(9,0,-1):#行循环
for j in range(i,0,-1):#列循环
print(str(i)+"*"+str(j)+"="+‘%-3s‘%str(i*j),end=" ")
print()

打印乘法口诀表

标签:range   i+1   end   int   练习   字符   int()   for循环   使用   

原文地址:https://www.cnblogs.com/Top-feiyu/p/12394014.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!