Python is an easy to learn, powerful
PRogramming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant
syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scr
ipting and rapid
application development in many areas on most platforms.
Python是一種易學高效的編程語言。她有著高效的高級數據結構和一種簡單但是有效的面向對象的編程方法。Python的簡單的語法和動態的類型,同時她有著自然的語言解釋,這使她在很多的方面成為一種腳本開發和快速編程的平臺
The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python Web site, https://www.python.org/, and may be
freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation.
Python的解釋器和可擴展的標準庫以及各種平臺的二進制形式可以從Python的官方網站:https://www.python.org/免費獲得,以及你可以自由的傳播這些東西。在這個網站同時包含有許多人提供的面對Python 3的模塊、程序和工具以及各種附加的文檔的建議。
The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C). Python is also suitable as an extension language for
customizable applications
Python的解釋器可以通過使用C和C++語言(或者其他可以通過C語言調用的編程語言)定義新的函數和數據類型實現來實現擴展。Python也是一種可適應的可擴展語言以適用于各種定制應用。
This tutorial introduces the reader informally to the basic concepts and features of the Python language and system. It helps to have a Python interpreter handy for hands-on experience, but all
examples are self-contained, so the tutorial can be read off-line as well.
通過這篇教程,讀者可以更加的通俗的理解Python這種語言體系的基本概念和特點。而且可以幫助讀者快速學會并動手使用Python的解釋器,并且,所有的例程都包含在這篇教程里,所以這篇教程可以離線閱讀
For a description of standard objects and modules, see The Python Standard Library. The Python Language Reference gives a more formal definition of the language. To write extensions in C
or C++, read Extending and Embedding the Python Interpreter and Python/C API Reference Manual. There are also several books covering Python in depth.
如果你想看更多的關于標準對象和模型的東西,《The Python Standard Library》《The Python Language Reference》這兩篇文章給出了關于這方面更好的解釋。如果你想C和C++上擴展使用,請閱讀《Extending and Embedding the Python Interpreter》和《Python/C API Reference Manual.》,在這里給出了給出了更多關于更深層次使用Python的教程書籍。
This tutorial does not attempt to be comprehensive and cover every single feature, or even every commonly used feature. Instead, it introduces many of Python’s most noteworthy features, and
will give you a good idea(理念) of the language’s flavor and style. After reading it, you will be able to read and write Python modules and programs, and you will be ready to learn more about the
various Python library modules described in The Python Standard Library.
這篇教程并不是去講解Python的所有或者大家都能理解和使用的特征,而是去介紹Python的一些最值得注意的特征,而且會給你表現這種語言的特點與風格的最好的理念。通過閱讀這篇教程,你將能夠閱讀和編寫Python的模型與程序,而且你將有能力去閱讀The Python Standard Library.(Python標準庫)里所介紹的各種各樣的Python庫。