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="\t")
    print()
posted @ 2018-09-20 19:21  Let_Life_Stop  阅读(223)  评论(0编辑  收藏  举报