File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 14
14
1 . [ 控制程式執行流程] ( Flow.md )
15
15
1 . [ 使用函式] ( Function.md )
16
16
1 . [ 用 Python 寫程式的守則和技巧] ( EffectivePython.md )
17
+
18
+ 1 . [ 使用 iterator 少用 index 增加程式的可讀性] ( Iterator.md )
19
+ 1 . [ 使用 generator 節省記憶體和組合相似的操作] ( Generator.md )
20
+ 1 . [ 少用 else 讓程式邏輯更清楚] ( RemoveElse.md )
21
+ 1 . 善用 with 管理物件的前置和後置處理以隱藏資源管理的細節
22
+ 1 . 用 Compose Method 讓程式更易讀
23
+ 1 . 遵守物件不可變的準則以減少犯錯的機會
Original file line number Diff line number Diff line change 13
13
1 . [ 使用 iterator 少用 index 增加程式的可讀性] ( Iterator.md )
14
14
1 . [ 使用 generator 節省記憶體和組合相似的操作] ( Generator.md )
15
15
1 . [ 少用 else 讓程式邏輯更清楚] ( RemoveElse.md )
16
- 1 . [ 善用 with 管理物件的前置和後置處理以隱藏資源管理的細節] ( )
17
- 1 . [ 用 Compose Method 讓程式更易讀] ( )
18
- 1 . [ 遵守物件不可變的準則以減少犯錯的機會 ] ( )
16
+ 1 . 善用 with 管理物件的前置和後置處理以隱藏資源管理的細節
17
+ 1 . 用 Compose Method 讓程式更易讀
18
+ 1 . 遵守物件不可變的準則以減少犯錯的機會
19
19
You can’t perform that action at this time.
0 commit comments