一、所用知识点:
1.变量的使用。
2.循环语句的使用,这里用到的是双while循环。当然,使用其他的循环去做也是可以的。我认为,对于刚刚接触编程的人来说,使用双while循环比较容易理解。
3.使用了换行符“ ”和制表符“ ”,使输出效果更加的美观
二、代码:
1 print(" "+"From top to bottom") 2 3 a1 = 1 4 5 while a1 <= 9: 6 a2 = 1 7 while a2 <= a1: 8 print(str(a2)+"*"+str(a1)+"="+str(a1*a2), end = " ") 9 a2 = a2 + 1 10 print() 11 a1 = a1 + 1 12 13 print("###################################################################### ") 14 15 print("From bottom to top") 16 17 a3 = 9 18 19 while a3 > 0: 20 a4 = 1 21 while a4 <= a3: 22 print(str(a4)+"*"+str(a3)+"="+str(a3*a4),end = " ") 23 a4 = a4 +1 24 print("") 25 a3 = a3 - 1
三、效果输出: