题目:输出九九乘法表

for i in range(1,10):

    for j in range(1,i + 1):

        print(i,'*',j,'=',i*j,)

    print()

你可能感兴趣的:(题目:输出九九乘法表)