def minus():
print("=========================九九乘法表===========================")
x=1
y=1
while(y<=9):
while(x<=y):
print(str(x)+"x"+str(y)+"="+str(x*y),end=' ')
x+=1
x=1
y+=1
print('\n')
print("==============================================================")
minus()
浙公网安备 33010602011771号