r/learnpython • u/No-Inevitable-6476 • 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
r/learnpython • u/No-Inevitable-6476 • 8h ago
What is the difference between python ,IronPython,Jython,Cython.i will get a lot of confusion towards these concepts.
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)