python how to import a module given a stringg

Solutions on MaxInterview for python how to import a module given a stringg by the best coders in the world

showing results for - "python how to import a module given a stringg"
Jacob
23 Apr 2019
1import importlib
2
3i = importlib.import_module("matplotlib.text")
4