Loaded modules and their path
for mod in sorted(sys.modules.keys()):
try:
print(mod, sys.modules[mod].__file__)
except Exception as err:
print(mod)
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
for mod in sorted(sys.modules.keys()):
try:
print(mod, sys.modules[mod].__file__)
except Exception as err:
print(mod)