九九乘法表 2015/05/07 13303 # 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;