1. 程式人生 > >Python實現九九乘法表的列印

Python實現九九乘法表的列印

row=1 while row<=9: # 列印一行式子 # 表示列號 col = 1 # 列印row列就是row個式子 while col <= row: # 列印第row行中的第col個式子 print("%d * %d = %d" % (col,row,row*col),end="\t") # 列號加1 col += 1 # 換行 print("",end="\n")