美文网首页python百例
35-函数-九九乘法表

35-函数-九九乘法表

作者: 凯茜的老爸 | 来源:发表于2018-07-30 12:58 被阅读34次
    def mtable(n):
        for i in range(1, n + 1):
            for j in range(1, i + 1):
                print('%s*%s=%s' % (j, i, i * j), end=' ')
            print()
    
    mtable(6)
    mtable(9)
    

    相关文章

      网友评论

        本文标题:35-函数-九九乘法表

        本文链接:https://www.haomeiwen.com/subject/yuffvftx.html