廖雪峰網站:學習python基礎知識—迴圈(四)

來源:互聯網
上載者:User

標籤:int()   基礎   python基礎   mic   sum   ...   基礎知識   條件   網站   

一、迴圈


1、for

names = [‘Michal‘, ‘Bob‘, ‘tracy‘]for name in names:    print(name)sum = 0for x in [1, 2, 3, 4, 5, 6, 7,8,9,10]:    sum = sum + x    print(sum)# 列印數字 0 - 9for x in range(10):    print(x)

 

2、while

sum = 0n = 99while n > 0:    sum = sum + n    n = n - 2    print(sum)n = 1while n <= 100:    if n > 10:  # 當n = 11時,條件滿足,執行break語句        break    # break語句會結束當前迴圈    print(n)    n = n + 1print("end")n = 0while n < 10:    n = n + 1    if n % 2 == 0:  # 如果n是偶數,執行continue語句        continue   # continue語句會直接繼續下一輪迴圈,後續的print()語句不會執行    print(n)# 計算1+2+3+...+100:sum = 0n = 1while n <= 100:    sum = sum + n    n = n + 1print(sum)# 計算1x2x3x...x100:acc = 1n = 1while n <= 100:    acc = acc * n    n = n + 1print(acc)

 

廖雪峰網站:學習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.