编辑代码

i=1
while i<=9:
    j=1
    while j<=i:
        print(j,"*",i,"=",j*i)
        j+=1
    print()
    i+=1