12. 現在可以來學習些什麼?

閱讀本教學可能增強您對於使用 Python 的興趣 — 您應該非常渴望使用 Python 來解決在現實生活中所遭遇的問題。該從哪裡學習更多呢?

本教學是 Python 文件中的一部分。這份文件集裡頭的其他文件包含:

  • Python 標準函式庫 (Standard Library)

    你該好好的瀏覽這份手冊,它提供了完整的(但簡潔)參考素材像是型別、函式與標準函式庫裡的模組。標準的 Python 發行版本會包含大量的附加程式碼。有些模組可以讀取 Unix 信箱、通過 HTTP 來檢索文件、產生亂數、分析命令列選項、編寫 CGI 程式、壓縮資料、及許多其他任務。瀏覽函式庫參考手冊可以讓你了解有哪些模組可以用。

  • 安裝 Python 模組(舊版) explains how to install external modules written by other Python users.

  • The Python Language Reference:Python 語法以及語意的詳細說明。這份文件閱讀起來會有些吃力,但作為一個語言本身的完整指南是非常有用的。

更多 Python 的資源:

  • https://www.python.org:Python 的主要網站。它包含程式碼、文件以及連結到 Python 相關聯的網頁。網站為鏡像的並設置於世界各地,像是歐洲、日本以及澳大利亞;鏡像網站也許會比主網站來得更快,不過具體速度則還是取決於你所在的地理位置。

  • https://docs.python.org:快速訪問 Python 的文件。

  • https://pypi.org:Python 套件索引(The Python Package Index),之前也被暱稱為 Cheese Shop,彙總了使用者開發 Python 模組的索引,並提供模組能夠被下載。一旦開始發佈相關程式碼,你可以將開發的作品註冊到這裡並且讓其他人找到。

  • https://code.activestate.com/recipes/langs/python/:Python Cookbook 是一個相當大的程式碼範例集,大量的模組以及有用的腳本。一些值得注意與特別貢獻則被收集在一本名為 Python Cookbook (O’Reilly & Associates, ISBN 0-596-00797-3.) 的書籍中。

For Python-related questions and problem reports, you can post to the newsgroup comp.lang.python, or send them to the mailing list at python-list@python.org. The newsgroup and mailing list are gatewayed, so messages posted to one will automatically be forwarded to the other. There are around 120 postings a day (with peaks up to several hundred), asking (and answering) questions, suggesting new features, and announcing new modules. Before posting, be sure to check the list of Frequently Asked Questions (also called the FAQ). Mailing list archives are available at https://mail.python.org/pipermail/. The FAQ answers many of the questions that come up again and again, and may already contain the solution for your problem.