python初学者-使用for循环做一个九九乘法表

for i in range(1, 10):
    for j in range(1, i + 1):
        print(j, '*', i, '=', i * j, end="  ")  #end= 以。。。结尾
    print()
原文地址:https://www.cnblogs.com/wang-yongxu/p/12544034.html