Flavors of Python

1. CPython:

It is the standard flavor of Python. 

It can be used to work with C language Applications

2. Jython or Python:

It is for Java Applications.

It can run on JVM

3. IronPython:

It is for C#.Net platform

4. PyPy:

The main advantage of PyPy is performance will be improved because JIT compiler is available inside PVM.

5. RubyPython

For Ruby Platforms

6. Anaconda Python

It is specially designed for handling large volume of data processing.

No comments:

Post a Comment

Thank you Very Much.For Given Comment

Conversion from Decimal to other Number Systems

 ==>To convert a decimal number to any other number system (binary, octal or hexadecimal), use the steps given below. Step 1: Divide the ...