[閱讀週記] 20180820-0826
source: http://bit.ly/2odsGIj
閱讀週記第4期, 記錄過去一週閱讀中覺得值得分享的資訊…
[Python]
- Python 3 Quick Tip: The easy way to deal with file paths on Windows, Mac and Linux
過去要處理Windows, Mac或 Linux目錄字串會使用 os.path.join() 這個內建函式,在 Python 3.4 之後新增了 pathlib 這個內建函式使用起來更方便,詳細的用法可以參考本文。 - Primer on Python Decorators:Python 的 Decorator 並不是 Design Pattern 裡所提到的 decorator pattern,這篇文章簡介了 Docorator(裝飾器)的概念,還附上了一些例子可以跟著實作。