基於Asabeneh在GitHub上的這個項目:https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme.md
我會跟著這個項目,提供一個(轉職)前端工程師在學Python會有的心得與困難。
定義(defining)函式 以鍵與值(key and value)給引數 有預設參數值的函式 不明確(arbitrary)數目的引數 將函式當成參數 這篇...
建立一個模組 引入(importing)一個模組 從模組中引入函式 引入內建模組 OS模組 Sys模組 Statistics模組 Math模組 String...
Lambda函式 這篇文章是閱讀Asabeneh的30 Days Of Python: Day 13 - List Comprehension後的學習筆記與...
閉包(closures) 裝飾器(decorators) Python內建的高階函數 Map函式 Filter函式 Reduce函式 這篇文章是閱讀A...
SyntaxError NameError IndexError ModuleNotFoundError AttributeError KeyError Ty...
透過datetime取得時間資訊 使用now()方法獲取當前時間 使用strftime格式化日期 使用strptime將字串轉時間 使用date取得日期...
例外與語法錯誤 Try...Except Else Finally 額外補充: 拋出(Raising)例外. 額外補充:AssertionError 題外話...
開箱(unpacking) 打包(packing) 展開(spreading) 列舉(enumerate) 壓縮(zip) 這篇文章是閱讀Asabeneh的...
re module Match Search Find all Substring Split 不區分大小寫 這篇文章是閱讀Asabeneh的30 Day...
Patterns Greedy vs Non-Greedy re Flags 編譯 pattern 改善效能 這篇文章是閱讀Asabeneh的30 Day...