一直認為 python3,因為它代表了python的未來。雖然向後相容是它的硬傷,但這個局面遲早會改變的, 而且python3的未來需要每個人的幫助和支持。目前市面上的教學書籍,網路上的手冊大部分基本上都是2.x系列的,專門基於3.x系列的書籍少的可憐。
《Python Cookbook》3rd Edition,完全基於python3,寫的也很不錯。
本書介紹了應用在各個領域的技巧和方法,涵蓋了許多高階主題:元程式設計、網頁、web程式設計、實用腳本、系統管理、C語言拓展等。
本書也涵蓋了許多python日常開發中的問題以及解決方案,在實際開發中的程式設計技巧,告訴你python如何工作並且為什麼工作(帶你了解python的工作原理和流程)!
專案說明
所有文件均使用reStructuredText編輯,參考 reStructuredText
目前文件產生託管在 readthedocs 上
#產生的文件預覽地址: python3-cookbook
使用了python官方文件主題 sphinx-rtd-theme ,也是預設的主題default.
書中所有程式碼均在python 3.4版本下面運行通過,所有原始碼放在cookbook包下面
# on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # otherwise, readthedocs.org uses their theme by default, so no need to specify it
以上是《python cookbook》怎麼樣的詳細內容。更多資訊請關注PHP中文網其他相關文章!