8行代码用python打印9 * 9 乘法表 i = 1 while i <= 9: j = 1 while j <= i: print('%d * %d = %d' %(j, i, j*i), end='\t') j += 1 print('\n') i += 1