I'm testing in Ipython and want to acknowledge of modules and packages already imported,
Firstly I tried locals
and globals
,
In [22]: len(globals())
Out[22]: 46
In [23]: len(locals())
Out[23]: 48
I have to lookup manually.
How to list the imported modules exclusively?