99乘法表

Posted nester-liz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了99乘法表相关的知识,希望对你有一定的参考价值。

#
# j = 1
# while j < 10:
#     i = 1
#     while i <= j:
#         print(‘{}*{}={}‘.format(i, j, i * j), end=‘	‘)
#         i += 1
#     print()
#     j += 1

for i in range(1, 10):
    for j in range(1, i+1):
        print({}*{}={}.format(i, j, i * j), end=	)
    print()

 

以上是关于99乘法表的主要内容,如果未能解决你的问题,请参考以下文章

python99乘法表多了个空格

python中用代码实现99乘法表

一行Python代码实现99乘法表

c语言求用for循环写99乘法表的代码 最后简单一点的 谢谢

用for循环打印99乘法表

99乘法表