标签: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