为了格式正确也是吐血了。。 rjust可以补齐空格,是个字符串函数所以要先转str类型再用

i = 1
while i < 10:
    j = 1
    while j <= i:
        s = str((i*j)).rjust(2)
        if j == i:
            print(f'{j}*{i}={s}',end='')
        else:
            print(f'{j}*{i}={s}',end=' ')
        j = j + 1

    print()
    i = i + 1