代码:
1 i = 1 2 while i <= 9: 3 n = 1 4 while n <=i: 5 print("%d*%d=%d\\t"%(n,i,i*n),end="") 6 n += 1 7 print("") 8 i +=1
输出:
Posted wzpy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python打印:九九乘法表相关的知识,希望对你有一定的参考价值。
代码:
1 i = 1 2 while i <= 9: 3 n = 1 4 while n <=i: 5 print("%d*%d=%d\\t"%(n,i,i*n),end="") 6 n += 1 7 print("") 8 i +=1
输出:
以上是关于Python打印:九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章