Python输出9*9 乘法表

 

for i in range(1,10):
    for j in range(1,i+1):
        print(str(j) + str("*") + str(i)+"=" + str(i*j),end="	")
    print()
原文地址:https://www.cnblogs.com/letlifestop/p/10262902.html