下⾯Python代码⽤于实现九九乘法表 ,代码中{i*j}与等号之间有一个空格 。代码执⾏后效果是( ) 。
for i in range(1, 10):
for j in range(1, i + 1):
print(f"{j}*{i}= {i*j}", end=" ")
print()