How to find out which VM i have in my Python installation?

python, virtual-machine

Solution

import platform
platform.python_implementation()

From the documentation:

platform.python_implementation()

     Returns a string identifying the Python implementation.
     Possible return values are: ‘CPython’, ‘IronPython’, ‘Jython’, ‘PyPy’.

http://docs.python.org/2/library/platform.html

Problem

I installed Python in my PC. how to find out which VM came with it. is it cpython or ipython or jpython?

Original source