python學習筆記 程式結構

2021-10-02 17:32:53 字數 977 閱讀 3563

age =

18if age <20:

print

(age)

else

:print(20

)

18
# score  存放學生成績

score =

int(

input

("請輸入學生成績:"))

if score>=90:

print

('a'

)elif score>=80:

print

('b'

)elif score >=70:

print

('c'

)elif score >=60:

print

('d'

)else

:print

('e'

)

請輸入學生成績:100

a

-  當for迴圈結束的時候,會執行else語句

- else語句是可選語句

- break: 無條件結束整個迴圈,簡稱迴圈猝死

- pass:表示略過,通常用於站位

- 生成乙個數字序列

- 具體範圍可以設定

- 乙個迴圈語句

- 表示當某條件成立的時候,就迴圈

- 不知道具體迴圈次數,但能確定迴圈的成立條件的時候用while迴圈

- while語法:

while 條件表示式:

語句塊#另外一種表達方法

while 條件表示式:

語句塊1

else:

語句塊2

python學習筆記(二) 程式結構

if 語句 單分支 雙分支 多分支 單分支結構 if 條件表示式 語句塊 雙分支結構 if 條件表示式 語句塊else 語句塊 多分支結構 if 條件表示式1 語句塊elif 條件表示式2 語句塊elif 條件表示式3 語句塊else 可以沒有 語句塊在python 中 for 迴圈與while 迴...

python學習筆記(二) 程式結構

if 語句 單分支 雙分支 多分支 單分支結構 if 條件表示式 語句塊 雙分支結構 if 條件表示式 語句塊else 語句塊 多分支結構 if 條件表示式1 語句塊elif 條件表示式2 語句塊elif 條件表示式3 語句塊else 可以沒有 語句塊在python 中 for 迴圈與while 迴...

C 學習筆記 程式結構

using system namespace acme.collections 在名為 acme.collections 的命名空間中宣告了乙個名為 stack 的類。這個類的完全限定名為 acm e.collections.stack。此類中包含以下幾個成員 乙個名為 top 的字段,兩個分別名為...