初来乍到,写个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

执行效果图如下:

 

posted @ 2018-02-07 10:42  走路爱走神  阅读(111)  评论(0)    收藏  举报