Python學習之[while]迴圈

來源:互聯網
上載者:User

標籤:...   顯示   pytho   後退   內容   pre   語句   輸入   個數   

while 迴圈的文法:

while 條件陳述式

  迴圈代碼塊

  ##break 打斷本層while 迴圈

  ##跳出本次迴圈進入下一次迴圈

else:

##迴圈結束後可以列印的內容

 

以下是幾個小練習:

1.用while 迴圈 判斷輸入的數字是否為質數.

num=int(input("請輸入一個數字"))
m=1
if num==0 or num==1:
print("請輸入一個大於1的數")
else:
while m<num-1:
m+=1
if num%m==0:
print("這個數是不是質數")
break
else:
print("這個數是質數")
2.猜數字遊戲:

利?while語句寫出猜??的遊戲:
設定?個理想數字?如:66,讓?戶輸?數字,如果?66?,則顯示猜測
的結果?了;如果?66?,則顯示猜測的結果?了;只有等於66,顯示猜測結果
正確,然後退出迴圈。

num=66

while True:
type = input("請輸入你猜的數字:")
type=int(type)
if type >66:
print("你輸入的數字太大")
elif type<66:
print("你輸入的數字太小")
else:
print("你輸入的數字正確")
break
3.
求1-100的所有數的和
count=0
sum=0
while count<100:
count+=1
sum+=count
print(sum)

4.輸出 1-100 內的所有奇數
‘‘‘
# count=1
# sum=1
# while count<99:
# count+=2
# sum=count+sum
# print(sum)

5.輸出 1-100 內的所有偶數
‘‘‘
# count=0
# sum=0
# while count<100:
# count+=2
# sum+=count
# print(sum)
6.求1-2+3-4+5 ... 99的所有數的和.
‘‘‘
count1=1
sum1=1
while count1<99:
count1+=2
sum1+=count1
print(sum1)
count2=0
sum2=0
while count2<100:
count2+=2
sum2+=count2
print(sum2)
print(sum1-sum2)
 

 

Python學習之[while]迴圈

相關文章

聯繫我們

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