thanks for your support and i think i konw what happen to my JMP, because i just reinstal my computer OS from WIN10 to WIN 11, which may lost some key environment for JMP, issue is fixed but another issue happend :
// This is the Scripts manual code for Python Get
Names Default To Here( 1 );
Python Init();
x1 = [1, 2, 3];
Python Send( x1 );
x2 = Python Get( x1 );
Show( x1, x2 );
dt1 = Open( "$SAMPLE_DATA/Big Class.jmp" );
Python Send( dt1 );
dt2 = Python Get( dt1 );
dt2 << New Data View;
Close( dt1 );
Python Term();
it's output is shown as below:
x1 = [1, 2, 3];
x2 = [1, 2, 3];
Send Expects Scriptable Object in access or evaluation of 'Send' , dt2 << /*###*/New Data View/*###*/
at line 10 in Scripting Index
i get the type of dt2 is Number : Type(dt2) = "Number";, so is there any solution for this issue?