python學習筆記 (八)條件語句

2022-07-17 12:27:11 字數 1270 閱讀 5887

if語句,

python中if

語句的一般形式如下:

conditon1為真,執行

statement_block_1

condition1為假,判斷

conition_2

,如果condition_2

為真,執行

statement_block_2

condition2為假,直接執行

statement_block_3

注意:1、每個條件後,需要使用冒號,標識接下來是滿足條件後執行的語句塊;

2、使用縮進來劃分語句塊,相同縮排數的語句在一起組成乙個語句塊;

3、在python

中沒有switch--case

語句。如:

1

if bool==1:

2 resultstr = (caseapiname, name, wish,"

result值:

"+str(bool),"成功"

)3 resultmode('

,'.join(resultstr) + "\n"

)4elif bool=="0"

:5 testresult = result.get("

error")

6if testresult==wishresult[col]:

7 resultstr = (caseapiname, name, wish, testresult,"成功"

)8 resultmode('

,'.join(resultstr) + "\n"

)9else

:10 resultstr = (caseapiname, name, wish, testresult,"失敗"

)11 resultmode('

,'.join(resultstr) + "\n"

)12else

:13 resultstr =(caseapiname, name, wish,result.get("

error

"),"失敗"

)14 resultmode('

,'.join(resultstr)+"

\n")

python學習 02 條件語句

if expression expr true suiteif 2 1and not2 3 print correct judgement correct judgement if expression expr true suite else expr false suitetemp input ...

Python學習(5)條件語句

python條件語句是通過一條或多條語句的執行結果 true或者false 來決定執行的 塊。可以通過下圖來簡單了解條件語句的執行過程 python程式語言指定任何非0和非空 null 值為true,0 或者 null為false。python 程式設計中 if 語句用於控制程式的執行,基本形式為 ...

Python學習筆記(三) 條件語句 迴圈語句

注 需注意 的縮排格式 注 需注意 的縮排格式 注 需注意 的縮排格式 python 與其他語言最大的區別就是,python 的 塊不使用大括號 來控制類,函式以及其他邏輯判斷。python 最具特色的就是用縮進來寫模組。縮排的空白數量是可變的,但是所有 塊語句必須包含相同的縮排空白數量,這個必須嚴...