I have two python scripts. First python script calls second. But seconds python script should use one variable from first script to give desired result. I know I can just writes those few codes in second script to first one simply. But I am curious how to do this on this way.
Tnx.
I have two python scripts. First python script calls second. But seconds python script
Share
The second script can import the first one:
Script A:
Script B:
or:
Script A:
Script B: