美文网首页
python編寫九九乘法表

python編寫九九乘法表

作者: 匡风含情 | 来源:发表于2017-02-24 15:12 被阅读164次

    代碼量真的很少~還是挺有意思的。

    i = 1
    while i < 10 :
        j = 1
        while j <= i :
            print("%d*%d=%-2d  " %(i, j, i*j), end = "")
            j += 1
        print("\n")
        i += 1
    

    相关文章

      网友评论

          本文标题:python編寫九九乘法表

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