Python is a dynamically and strongly typed programming language that is used for developing a wide range of applications. It is a general-purpose, high-level programming language whose design philosophy emphasizes code readability. Python's syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C, and the language provides constructs intended to enable clear programs on both a small and large scale.
Python supports multiple programming paradigms, including object-oriented, imperative and functional programming styles. It features a fully dynamic type system and automatic memory management, similar to that of Scheme, Ruby, Perl and Tcl. Like other dynamic languages, Python is often used as a scripting language, but is also used in a wide range of non-scripting contexts. Using third-party tools, Python code can be packaged into standalone executable programs. Python interpreters are available for many operating systems.
The philosophy of Python is succinctly formulated in The Zen of Python written by Tim Peters, which can be revealed by issuing this command at the interactive interpreter:
>>> import this
The exhaustive and up-to-date reference to the Python specification and standard library documentation can be found in the official documentation. There are a wide variety of implementations, which have relevant Stack Overflow tags reserved for them, although for most questions python should be sufficient. The reference implementation is known as CPython. When answering Python questions you may assume the use of CPython unless explicitly stated otherwise. Also when answering Python questions, you may like to include in your answer, the versions of Python that your solution supports eg. "This solution only works in Python 2". You can also include the Python 3 equivalent version of your code if you have written it in Python 2.
The current stable versions are 2.7.5 and 3.3.2.
The 3.x series is backward incompatible with Python 2.x.
Python is free to use, even for commercial products, because of its OSI-approved open source license.
References
Tagging recommendation:
Use the python tag for all Python related questions. If you believe your question includes issues specific to the incompatible Python 2.x or Python 3.x, in addition to the main python tag, use python-2.x or python-3.x. If you believe your question may be even more specific, you can include a version specific tag such as python-2.7.
Chat Rooms
Chat about Python with other Stack Overflow users in the Python chat room
Community
Free Python Programming Books
- Wikibooks’ Non-Programmers Tutorial for Python
- The Official Python Tutorial
- Building Skills in Python Version 2.6 - Steven F. Lott
- A Byte of Python - Swaroop C H.
- Data Structures and Algorithms in Python - Bruno R. Preiss
- Dive into Python
- Dive into Python 3
- The Django Book - Adrian Holovaty and Jacob Kaplan-Moss.
- How to Think Like a Computer Scientist: Learning with Python - Allen Downey, Jeff Elkner and Chris Meyers.
- Invent Your Own Computer Games With Python - Al Sweigart
- Learn Python The Hard Way - Zed A. Shaw
- Making Games with Python & Pygame - Albert Sweigart
- Natural Language Processing with Python - Steven Bird, Ewan Klein, and Edward Loper
- Python Bibliotheca
- Python for Fun - Chris Meyers
- Snake Wrangling For Kids - Jason R. Briggs
- Think Python (PDF file) - Allen Downey
Interactive Python learning
- Python Monk - Interactive Python learning in the browser
- Codeacademy - Learn the fundamentals of Python and dynamic programming