看了一下Python的最基本的语法,写了一个九九乘法表。具体代码如下:
1 first = 1 2 second = 1 3 4 while (first <= 9): 5 second = 1 6 while (second <= first): 7 print(str(second)+"*"+str(first)+"="+str(first*second), end="\\t") 8 second += 1 9 print() 10 first += 1
执行效果图如下:
Posted walkcreaker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初来乍到,写个99乘法表,试试播客效果相关的知识,希望对你有一定的参考价值。
看了一下Python的最基本的语法,写了一个九九乘法表。具体代码如下:
1 first = 1 2 second = 1 3 4 while (first <= 9): 5 second = 1 6 while (second <= first): 7 print(str(second)+"*"+str(first)+"="+str(first*second), end="\\t") 8 second += 1 9 print() 10 first += 1
执行效果图如下:
以上是关于初来乍到,写个99乘法表,试试播客效果的主要内容,如果未能解决你的问题,请参考以下文章