r/learnpython 8h ago

Python difference.

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

1 Upvotes

6 comments sorted by

View all comments

1

u/veekm 8h 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)