for i in range(1,10): for j in range(1,i+1): print('{}x{}={} '.format(i, j, i*j), end='') #format格式对齐 print() #在输出下一行时换行