Let's say I have a variable in Python called test_text and is equal to "hello"
I want to be able to use that inside a separate Java file using System.out.println(text_test);
I have worked with Java and Python both but not together. I am not sure where to start, I have heard of JPython though, but I would like opinions for my specific request.
Python:
test = "hello"
Java:
System.out.println(test);
Thank you! I need to send data from a Python script to a Java file.'
OR:
Suggest a good language to create a GUI application with good support for Python