Python 打印99乘法口诀表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 打印99乘法口诀表相关的知识,希望对你有一定的参考价值。
1 import string
2 for x in xrange(1,10):
3 for y in xrange(1,x+1):
4 print string.ljust("%d*%d = " %(y,x) + str(y*x), 10),
5 print
输出结果:
以上是关于Python 打印99乘法口诀表的主要内容,如果未能解决你的问题,请参考以下文章