Documentation

https://d33wubrfki0l68.cloudfront.net/97e0b95acdc7e00720e66332507e7c0b6773bc34/fbd0b/_images/33928823133_2f3d32cf32_k_d.jpg

Official Documentation

The official Python Language and Library documentation can be found here:

- Python 2.x- Python 3.x

Read the Docs

Read the Docs is a popular community project that hosts documentationfor open source software. It holds documentation for many Python modules,both popular and exotic.

Read the Docs

pydoc

pydoc is a utility that is installed when you install Python.It allows you to quickly retrieve and search for documentation from yourshell. For example, if you needed a quick refresher on thetime module, pulling up documentation would be as simple as:



  1. $ pydoc time


The above command is essentially equivalent to opening the Python REPLand running:



  1. >>> help(time)


原文: https://docs.python-guide.org/intro/documentation/