def cfb(): j = 0 while j < 9: j += 1 # 内循环控制行 i = 0 while i < j: i += 1 print(i, '*', j, '=', (i * j), end=' ') print()cfb