python for循环 打印九九乘法表时间:2022-12-19 22:58:22 for i in range(1,10): for j in range(1,i+1): print(f"{j}*{i}={i*j}",end=" ") print()