How to return a list of strings from a python script to JSL
Hi I've got a small python script that has some user entry fields and uses to create some SQL scripts, I want these to then be run through jmp.
Currently the JSL file is:
Python Submit File( "python.py" );
query_list = Python Get( list );
show(query_list)
The python script is running as intended as if I print (list) in python it'll show the list of queries in the log.
I've also tried turning the ...