微信扫一扫
for i in range(1,10): j = 1 while j <= i: print(f"{j}*{i}={i * j}", end=" ") j += 1 print("")
相关推荐