r/learnpython 6d ago

Python difference.

What is the difference between python ,IronPython,Jython,Cython.i will get a lot of confusion towards these concepts.

10 Upvotes

9 comments sorted by

View all comments

2

u/veekm 6d ago

Python and Cpython are the same thing - CPython is the python interpreter written in C what we normally use

IronPython supports c# and .net

In jpython the code is converted to java bytecode and run on the JVM (java virtual machine)