Python 打印九九乘法表

for i in range(1,10):

    for j in range(1,i+1):
        print(f"{i}×{j}={i*j}",end=" ")
    print()

原文地址:https://www.cnblogs.com/shenyuanhaojie/p/15605208.html