原创 Python實現九九乘法表

# Python 打印99乘法表 for i in range(1, 10): for j in range(1, i+1): print("{}×{}={}".format(i, j, i*j), end