Please enable JavaScript.
Coggle requires JavaScript to display documents.
python程式設計的樂趣 - Coggle Diagram
python程式設計的樂趣
ch8 函式
定義
引數與參數
位置引數
關鍵字引數
預設值
返回值
選擇性引數
返回字典
while中的函式
ch3 串列
存取
索引
修改
新增append
刪除del,remove,pop
排序sort,sorted
反序reverse=True
長度len
ch7 輸入與while迴圈
input()
int()
模數運算子
while
旗標
break
continue
避免無窮迴圈
ch6 字典
存取
新增
建立新字典
刪除
用get取值
for存取
巢狀
字典串列
字典中的串列
字典中的字典
ch4 串列應用
for遍訪
縮排
數字串列range
切片
元組
編排風格pep8
ch2 變數與data type
變數
字串
數值
注釋
禪
ch5 if
條件
if-else
if-elif
if-elif-else
處理串列