Its been a while since I've really messed with this stuff, but having some issues with the Python Submit function. Take the following code
Names Default To Here( 1 );
Python Init();
Python Submit( "\[
str = 'The quick brown fox jumps over the lazy dog';
a = 200;
]\" );
getStr = Python Get( str );
getNum = Python Get( a );
Show( getStr, getNum );
Python Term();
If I wanted to make the word "fox" a variable I would have thought it was just a matter of concatenating a variable into the string, but for whatever reason I can't seem to break that string? Maybe it's because it's a list of strings? I feel like this is an obvious one but for whatever reason I'm missing it.