py代码:

i = 1
while i <=9:
j = 1
while j <=i:
print("%s%s=%s\t "%(j,i,ji),end="")
j += 1
print(" ")
i +=1