python syntax to import from a file name string code example
Example: python import from string name
import importlib
mod = importlib.import_module(testName)
mod.HelloWorld()
import importlib
mod = importlib.import_module(testName)
mod.HelloWorld()