溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python有哪些循環(huán)判斷語(yǔ)句

發(fā)布時(shí)間:2020-09-24 09:53:25 來(lái)源:億速云 閱讀:173 作者:Leah 欄目:編程語(yǔ)言

今天就跟大家聊聊有關(guān)Python有哪些循環(huán)判斷語(yǔ)句,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

一、if判斷語(yǔ)句

1. if...else

  if 條件:

          滿足條件時(shí)要做的事情1

          滿足條件時(shí)要做的事情2

          ......

  else:

          不滿足條件時(shí)要做的事情1

          不滿足條件時(shí)要做的事情2

          ......

# -*- coding:utf-8 -*-
age = input("請(qǐng)輸入年齡:")
age = int(age)
if age > 18:
    print("已經(jīng)成年")
else:
    print("未成年")

2. elif

elif的使用格式如下:

    if xxx1:

        事情1

    elif xxx2:

        事情2

    elif xxx3:

        事情3

說(shuō)明:

當(dāng)xxx1滿足時(shí),執(zhí)行事情1,然后整個(gè)if結(jié)束。

當(dāng)xxx1不滿足時(shí),那么判斷xxx2,如果xxx2滿足,則執(zhí)行事情2,然后整個(gè)if結(jié)束。

當(dāng)xxx1不滿足時(shí),xxx2也不滿足,如果xxx3滿足,則執(zhí)行事情3,然后整個(gè)if結(jié)束。

score = 66
if score>=90 and score<=100:
    print('本次考試,等級(jí)為A')
elif score>=80 and score<90:
    print('本次考試,等級(jí)為B')
elif score>=70 and score<80:
    print('本次考試,等級(jí)為C')
elif score>=60 and score<70:
    print('本次考試,等級(jí)為D')
elif score>=0 and score<60:
    print('本次考試,等級(jí)為E')

 3. if嵌套

if嵌套的格式

    if 條件1:

        滿足條件1 做的事情

        if 條件2:

            滿足條件2 做的事情

說(shuō)明:

內(nèi)外層都可以是if-else語(yǔ)句

內(nèi)外層的判斷標(biāo)準(zhǔn)是tab縮進(jìn)

# -*- coding:utf-8 -*-
ticket = 0 #車票,非0代表有車票,0代表沒有車票
suitcase = 1 #手提箱,0代表檢查合格,非0代表有違禁品
if ticket != 0:
    print("有車票,可以進(jìn)站")
    if suitcase == 0:
        print("通過(guò)安檢")
        print("終于可以見到Ta了,美滋滋~~~")

二、while循環(huán)

1. while循環(huán)的格式

    while 條件:

        條件滿足時(shí),做的事情1

        條件滿足時(shí),做的事情2

        條件滿足時(shí),做的事情3

# 計(jì)算1~100里所有偶數(shù)的和<br>i = 1
sum = 0
while i<=100:
    if i%2 == 0:
        sum = sum + i
    i+=1
print("1~100的累積和為:%d"%sum)

2. while嵌套

while 條件1:

        條件1滿足時(shí),做的事情1

        條件1滿足時(shí),做的事情2

        while 條件2:

            條件2滿足時(shí),做的事情1

            條件2滿足時(shí),做的事情2

要求:打印如下圖形:

    *
    * *
    * * *
    * * * *
    * * * * *
i = 1
while i <= 5:
    j = 1
    while j <= i:
        # print默認(rèn)用/n作為結(jié)束符,這里不能換行,重新指定結(jié)束符end=''
        print("* ", end='')
        j += 1
    # 這里使用默認(rèn)的換行即可,不需要任何內(nèi)容
    print()
    i += 1

3. while+else

與其它語(yǔ)言else 一般只與if 搭配不同,在Python 中還有個(gè)while ...else 語(yǔ)句,while 后面的else 作用是指,當(dāng)while 循環(huán)正常執(zhí)行完,中間沒有被break 中止的話,就會(huì)執(zhí)行else后面的語(yǔ)句。

count = 0
while count <= 5 :
    count += 1
    print("Loop",count)
 
else:
    print("循環(huán)正常執(zhí)行完啦")
print("-----out of while loop ------")
輸出
Loop 1
Loop 2
Loop 3
Loop 4
Loop 5
Loop 6
循環(huán)正常執(zhí)行完啦
-----out of while loop ------
 
#如果執(zhí)行過(guò)程中被break啦,就不會(huì)執(zhí)行else的語(yǔ)句啦
count = 0
while count <= 5 :
    count += 1
    if count == 3:break
    print("Loop",count)
else:
    print("循環(huán)正常執(zhí)行完啦")
print("-----out of while loop ------")
輸出
 
Loop 1
Loop 2
-----out of while loop ------

三、for循環(huán)

for 臨時(shí)變量 in 列表或者字符串等:

循環(huán)滿足條件時(shí)執(zhí)行的代碼

else:# 選擇性使用

循環(huán)不滿足條件時(shí)執(zhí)行的代碼

# 打印九九乘法表
for i in range(1, 10):
    for j in range(1, i + 1):
        print('%s*%s=%s' % (j, i, i * j), end=' ')
    print()

四、break和continue

#break用于退出本層循環(huán)
while True:
    print "123"
    break
    print "456"
 
#continue用于退出本次循環(huán),繼續(xù)下一次循環(huán)
while True:
    print "123"
    continue
    print "456"

看完上述內(nèi)容,你們對(duì)Python有哪些循環(huán)判斷語(yǔ)句有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI