while练习99乘法表

Posted fate2048

tags:

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

first = 1
while first<=9:
    sec = 1
    while sec <= first:
        print(str(sec)+"*"+str(first)+"="+str(sec*first),end="\t")
        sec += 1
    print()
    first += 1

 

学习了99乘法表,回头自己看 温故而知新

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