Python學習筆記五:while語句

來源:互聯網
上載者:User

 

 1 #coding:utf-8
2 #下面的函數用來計算偶數的數量
3  def NumberOfEven(x):
4 count = 0
5 while(x):
6 if (x % 2 == 0):
7 count += 1
8 x -= 1
9 return count
10
11  print NumberOfEven(2)
12
13
14
15
16  #while程式的執行過程為:
17 #首先計算while後麵條件運算式的值,得到1和0兩種條件
18 #如果條件為0,則退出while迴圈,執行迴圈以外的語句
19 #如果條件為1,執行while迴圈內的每一條語句,然後返回至第一步
20 #★注意★:迴圈體內要有使迴圈結束的條件,否則,就成了死迴圈程式了
21  
22  #利用while迴圈列印九九乘法表
23  i = 0
24 j = 0
25  while (i<10):
26 while (j<10):
27 print i,' * ',j,' = ',i*j
28 j += 1
29 #print '\n'
30   i += 1
31 j = 0

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.