實作程式碼:# 九九乘法表 for i in range(1, 10): for j in range(1, i+1): print('{}x{}={}\t'.format(j, i, i*j), end='') print()輸出結果如下: 推薦教學:python教學