python寫一個乘法表的指令碼

來源:互聯網
上載者:User

標籤:python寫一個乘法表的指令碼

學習指令碼的時候經常會被問到會不會寫一個99乘法表,現在就用python語句簡單寫一個乘法表

[[email protected] python_py]# cat while3.pyi = 1while (i<=9):       j=1       while(j<=i):              printj,"x",i,"=",j*i,"\t",              j=j+1       print" "       i= i+1

測試:

[[email protected] python_py]# python while3.py 1 x 1 = 1  1 x 2 = 2 2 x 2 = 4  1 x 3 = 3 2 x 3 = 6 3 x 3 = 9  1 x 4 = 4 2 x 4 = 8 3 x 4 = 12 4 x 4 = 16  1 x 5 = 5 2 x 5 = 10 3 x 5 = 15 4 x 5 = 20 5 x 5 = 25  1 x 6 = 6 2 x 6 = 12 3 x 6 = 18 4 x 6 = 24 5 x 6 = 30 6 x 6 = 36  1 x 7 = 7 2 x 7 = 14 3 x 7 = 21 4 x 7 = 28 5 x 7 = 35 6 x 7 = 42 7 x 7 = 49  1 x 8 = 8 2 x 8 = 16 3 x 8 = 24 4 x 8 = 32 5 x 8 = 40 6 x 8 = 48 7 x 8 = 56 8 x 8 = 64  1 x 9 = 9 2 x 9 = 18 3 x 9 = 27 4 x 9 = 36 5 x 9 = 45 6 x 9 = 54 7 x 9 = 63 8 x 9 = 72 9 x 9 = 81



本文出自 “第一個legehappy51cto部落格” 部落格,請務必保留此出處http://legehappy.blog.51cto.com/13251607/1981457

python寫一個乘法表的指令碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.