I am trying to import many files. I have a list (myList) of strings that are the names of the files of the modules that I want to import. All of the files which I want to im
myList = ['fileOne', 'fileTwo', 'fileThree'] modules = map(__import__, myList)