Python制作九九乘法表 L21 2023-10-16 256 阅读1分钟 # 九九乘法表 i = 1 while i<=9: j = 1 while j <= i: print(f"{j}*{i}={j*i}\t",end="") j+=1 i+=1 print()