Python send() command is not working
Hi All,
I am trying to test that my computer is able to run JSL scripts that use Python, I found two pieces of codes in the JMP help and I ran them using JMP 15. The following piece of code is working fine, It includes the python submit().
Names Default To Here( 1 );
Python Init();
Python Submit( "\[
basket = ['apple', 'orange', 'pear']
print(basket)
print(basket[0])
print(basket[1])
]\" );
Pyt
...