看了一下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
执行效果图如下:
标签:alt inf bsp div 效果图 class col log .com
看了一下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
执行效果图如下:
标签:alt inf bsp div 效果图 class col log .com
原文地址:https://www.cnblogs.com/walkcreaker/p/8425502.html