CPython:
Download the official Python compiler later.
Pycharm:
A good tool.
PyPy:
PyPy is another Python interpreter whose goal is to perform speed. PyPy uses JIT technology to dynamically compile Python code (note that it is not interpreted), so it can significantly improve the execution speed of Python code.
The vast majority of Python code can be run under PyPy, but PyPy and CPython have some differences, which
Jython
Jython is a Python interpreter running on the Java platform that compiles python code directly to Java bytecode execution.
IronPython
IronPython is similar to Jython, except that IronPython is a Python interpreter running on the Microsoft. NET platform that compiles python code directly into. NET bytecode.
If you want to interact with the Java or. NET platform, the best approach is not to use Jython or IronPython, but to interact via network tuning to ensure the independence of each program.
This article is from the "love to Learn bear children" blog, please be sure to keep this source http://molilinzi.blog.51cto.com/8282931/1702648
Python notes--ide selection