Python IF 條件判斷

來源:互聯網
上載者:User

標籤:語句   als   輸出   false   等於   pytho   nbsp   輸出變數   判斷   

if 語句用於控製程序的執行,基本形式為:
if 判斷條件: 執行語句……else: 執行語句……

其中"判斷條件"成立時(非零),則執行後面的語句,而執行內容可以多行,以縮排來區分表示同一範圍。

else 為可選語句,當需要在條件不成立時執行內容則可以執行相關語句:

name = ‘Python‘if name == ‘Python‘:         # 判斷變數否為‘Python‘    print("歡迎學習Python")              # 並輸出歡迎資訊else:    print(name)               # 條件不成立時輸出變數名稱

if 語句的判斷條件可以用>(大於)、<(小於)、==(等於)、>=(大於等於)、<=(小於等於)來表示其關係。

當判斷條件為多個值時,可以使用以下形式:

num = -59if num >= 90:            # 判斷num的值    print(‘優秀‘)elif num >= 80:    print("不錯")elif num >= 60:    print("及格")else:    print("不及格")

如果判斷需要多個條件需同時判斷時,可以使用 or (或),表示兩個條件有一個成立時判斷條件成功;使用 and (與)時,表示只有兩個條件同時成立的情況下,判斷條件才成功。

num = 9if num >= 0 and num <= 10:  # 判斷值是否在0~10之間    print(True)num = 10if num < 0 or num > 10:  # 判斷值是否在小於0或大於10    print(True)else:    print(False)num = 13# 判斷值是否在0~5或者10~15之間if (num >= 0 and num <= 5) or (num >= 10 and num <= 15):    print(True)else:    print(False)

 

Python IF 條件判斷

相關文章

聯繫我們

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