Concept
Python (United Kingdom pronunciation:/?pa?θ?n/American pronunciation:/?pa?θɑ?n/) is an object-oriented, interpreted computer programming language, invented by Dutch Guido van Rossum in 1989, and the first public offering was released in 1991.
features
Python is purely free software, the source code and the interpreter CPython follow the GPL (GNU general public License) protocol, with a rich and powerful library, a concise and clear syntax, one of the features is mandatory whitespace (white space) Indent as a statement.
type
- Cpython
The official version of Python, implemented using the C language, is the most widely used, and the CPython implementation converts the source file (py file) into a bytecode file (PYc file) and then runs on the Python virtual machine.
- Jyhton
Python Java implementation, Jython will dynamically compile Python code into Java bytecode, and then run on the JVM.
- IronPython
In Python's C # implementation, IronPython compiles Python code into C # bytecode and then runs on the CLR. (similar to Jython)
- PyPy (Special)
Python implements Python, which compiles Python bytecode bytecode into machine code.
- Rubypython, Brython ...
Python experience "first verse": Understanding Python