需求:输出九九乘法表blog
plus.py代码以下:im
i=1img
j=1while
while i<=9:co
j=1ps
while j<=i:ab
print(j,'*',i,'=',str(i*j)+' ',end='\t')
j +=1
print()
i +=1
输出内容以下: