python 打印99乘法表
a = 1 while a <= 9 : b = 1 while b <= a : print("%dx%d=%d " %(a,b,a*b),end="") b = b +1 print() #换行 a = a +1