I'm creating what I call a "Script Manager" that will fire a script based on product type. So, if the user inputs Aerial or Radius, the appropriate script is ran.
I can get this to run using os.system('python C:\Sample.py' + parameter variables) The problem with this is the script is run through python window.
I've been told it is more effective to use an import statement, something like this: if Product == "Aerial": import ("C:\Sample.py")