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.
2
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.
7
u/NumberInfinite2068 8h ago
Python is the language.
IronPython is a runtime for that language for .NET.
Jython is a runtime for that language in Java (runs on the JVM).
Cython is a superset of the Python language, i.e. it's Python + some more features.