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

2022-04-09 15:27:09 字數 623 閱讀 1564

注:需注意**的縮排格式

注:需注意**的縮排格式

注:需注意**的縮排格式

python 與其他語言最大的區別就是,python 的**塊不使用大括號 {} 來控制類,函式以及其他邏輯判斷。python 最具特色的就是用縮進來寫模組。

縮排的空白數量是可變的,但是所有**塊語句必須包含相同的縮排空白數量,這個必須嚴格執行。

1、if

格式:

if

條件一:

**塊elif

條件二 **塊

else

: **塊

if 條件1 and

條件2:

**塊else

: **塊

格式:

while

條件: **塊

Ruby 學習(三)條件語句

語法 if conditional then code.elsif conditional then code.else code.end debug 1 print debug n if debug如果conditional為假,則執行code var 1 print 1 這一行輸出 n if v...

Python學習筆記(三)條件判斷和迴圈

if 條件判斷1 執行1 elif 條件判斷2 執行2 elif 條件判斷3 執行3 else 執行4 age 20 if age 6 print teenager elif age 18 print adult else print kid 如果在某個選擇支為 true,則忽略掉剩下的 elif ...

Linux Shell(三) 條件判斷

str1 str2 當兩個串有相同內容 長度時為真 str1 str2 當串str1和str2不等時為真 n str1 當串的長度大於0時為真 串非空 z str1 當串的長度為0時為真 空串 str1 當串str1為非空時為真 int1 eq int2 兩數相等為真 int1 ne int2 兩數...