Python列印乘法表
row = 1
while row <= 9:
col = 1
while col <= row:
print("%d * %d = %d" % (col, row, col * row), end="\t") #製表符(\t),垂直方向對齊
col += 1
print("") #相當於換行
row += 1
列印結果:
1 * 1 = 1
1 * 2 = 2 2 * 2 = 4
1 * 3 = 3 2 * 3 = 6 3 * 3 = 9
1 * 4 = 4 2 * 4 = 8 3 * 4 = 12 4 * 4 = 16
1 * 5 = 5 2 * 5 = 10 3 * 5 = 15 4 * 5 = 20 5 * 5 = 25
1 * 6 = 6 2 * 6 = 12 3 * 6 = 18 4 * 6 = 24 5 * 6 = 30 6 * 6 = 36
1 * 7 = 7 2 * 7 = 14 3 * 7 = 21 4 * 7 = 28 5 * 7 = 35 6 * 7 = 42 7 * 7 = 49
1 * 8 = 8 2 * 8 = 16 3 * 8 = 24 4 * 8 = 32 5 * 8 = 40 6 * 8 = 48 7 * 8 = 56 8 * 8 = 64
1 * 9 = 9 2 * 9 = 18 3 * 9 = 27 4 * 9 = 36 5 * 9 = 45 6 * 9 = 54 7 * 9 = 63 8 * 9 = 72 9 * 9 = 81
相關文章
- 列印99乘法表
- c#列印99乘法表C#
- 列印九九乘法表
- Python 6種列印99乘法表的方法詳解!Python
- PHP列印9*9的乘法表PHP
- js列印九九乘法表(迴圈)JS
- 用js實現列印九九乘法表JS
- JAVA基礎--迴圈語句_列印九九乘法表Java
- 如何用python輸出99乘法表Python
- python3列印不同方向的九九乘法表(for迴圈的靈活運用)Python
- python列印菱形Python
- python 99乘法表,佔位基礎複習Python
- SQL乘法表SQL
- python 列印 ASCII表PythonASCII
- python怎麼列印listPython
- python列印乘法口訣Python
- python 列印可見字元Python字元
- Python 列印中文字元Python字元
- 揭秘Python:物件型別列印Python物件型別
- Python列印類的屬性Python
- python中怎麼列印漢字Python
- python中怎麼列印陣列Python陣列
- Python使用雙層列表推導式輸出九九乘法表Python
- 用python做個九九乘法表-夠簡單,能學會Python
- 用SQL實現99乘法表SQL
- 列印 Python 的一切 —— pprint & beeprintPython
- python如何以表格形式列印輸出Python
- python中如何重複列印很多遍?Python
- python 數字 十六進位制 列印Python
- C語言九九乘法表C語言
- [java學習]九九乘法表Java
- Python 3 進階 —— print 列印和輸出Python
- python3怎麼列印隨機數Python隨機
- python的list要列印中文字元Python字元
- 列印當前python檔案錯誤行Python
- python 以16進位制列印輸出Python
- python 用traceback列印錯誤訊息(轉)Python
- JavaScript中九九乘法表製作JavaScript