Find all the modules loaded in Python
To find all the modules loaded by python, execute the following script:
|
1 |
import sys |
|
1 2 |
for eachModule in sys.modules: print eachModule |
If you run the above code, you will can see all the modules that are loaded.