当前位置:天才代写 > tutorial > Python教程 > python 九九乘法表 python 九九乘法表 最后更新 2018-05-16 08:00 星期三 所属: Python教程 浏览:286 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