python 九九乘法表 python 九九乘法表 python"># 9*9 for i in list(range(1,10)): for j in list(range(1,10)): if i >= j: print(i * j, '', end=''); else: print("\n"); break; 标签:python