for i in range(1, 10): for j in range(1, i + 1): print(f"{j} * {i} = {i * j}\t", end='') print()
Last updated 2 years ago
Was this helpful?