1、條件語句
ifelse
elif
assert
def
guess_age()
: height =
178print
("試著猜一下我的身高吧^_^"
) temp =
input
("try(cm)(175-180):"
) guess =
int(temp)
assert
174181if guess>height:
print
("對不起,猜大嘍"
)elif guessprint
("對不起,猜小嘍"
)else
:print
("wow,厲害厲害,猜對了"
)
2、迴圈語句
while
forrange()
enumerate()
break
continue
pass
#while 做迴圈語句時,條件只要為true,則一直進行下去
#for 用於迭代迴圈,一般可接range()和enumerate()
#break continue 作為迴圈控制語句,用於立即跳出迴圈或繼續下乙個迴圈。
#pass 語句一般用於函式或類框架定義時,還沒想好具體內容時的簡單填充。
for i in
range(5
):print
("i=%d"
% i)
#i=0
#i=1
#i=2
#i=3
#i=4
fruits =
for i, f in
enumerate
(fruits)
:print
(i, f)
#1 banana
#2 orange
#3 pear
defmin()
:pass
3、參考文獻 Python基礎學習簡記 列表與元組(Day3)
序列是python中最基本的資料結構。序列中的每個元素都分配乙個數字 它的位置,或索引,第乙個索引是0,第二個索引是1,依此類推。python有6個序列的內建型別,但最常見的是列表和元組。序列都可以進行的操作包括索引,切片,加,乘,檢查成員。此外,python已經內建確定序列的長度以及確定最大和最小...
Python基礎學習簡記 模組與包(Day17)
python語言的另乙個強大之處在於python的強大第三方模組。我們只需要簡單的import就可以使用第三方的各種函式功能以達到我們的目標。1 匯入模組的方法 import from import import as 4.from import import copy import math im...
python學習手冊 簡記
匹配hello開頭 world結尾字串 中間的任意字元儲存在group中.import re match re.match hello t world hello python world match group 1 python match re.match usr home lumberjack...