About

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 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 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 tag, use or . If you believe your question may be even more specific, you can include a version specific tag such as .


Chat Rooms

Chat about Python with other Stack Overflow users in the Python chat room


Community


Free Python Programming Books


Interactive Python learning

  • Python Monk - Interactive Python learning in the browser
  • Codeacademy - Learn the fundamentals of Python and dynamic programming
history|show excerpt|excerpt history