Jan 17, 1997 — Jython (JPython) First Release
January 17, 1997
On January 17, the first version of Jython (JPython) was released.
Jython (formerly JPython) is an implementation of the Python programming language that runs on the Java Virtual Machine (JVM).
What does this mean? A programming language, in a broader sense, is not just a set of language constructs and idioms, but also the runtime environment in which the code is executed.
The Python most developers use today is CPython.
The Java Virtual Machine (JVM) is one of the most powerful and mature execution environments thanks to its cross-platform nature. As a result, hundreds of programming languages have been implemented to run on it, including Jython.
In essence, Jython is almost the same as Python, but it runs inside the JVM and can even use Java classes via standard imports.
Jython website: https://www.jython.org/
GitHub: https://github.com/jython/jython