Local shell script variable

In the shell script, python_local_variable_1 = os.environ.get('KMVAR_local_variable_1')

Is the python_local_variable_1 in shell script also "local"?

Is there a conflict if there are another shell script run the same time and has the same

python_local_variable_1 = os.environ.get('KMVAR_local_variable_1')

Thanks

No. Even if you declared the variable globally in the Python script it would still be local to that execution instance.

I see, Thanks