So I have a Python script that look like this:
def methodOne(): print("Hello I am the first method") def methodTwo(): print("Hello I am the second method") And I have a simple Java script like this:
public class helloworld { public static void main(String[] args) { //Here I want to call the Methods that are in the Python script } } But I can´t figure out how I could call those methods in the Java file. Is there a way to do this?