I am playing with IPython and I also tried this using and IDE but I can't figure out
I have module A when I do dir(A) I will get a list of strings containing the names of the methods, properties and child objects that the A module contains.
Let's say B is a child of A so the output of dir(A) is output=['B',....] Now I want to do dir(A.B) but B is a string and A is an object so I can't do dir (A+'.'+output[0]) since this will fail
How do I call dir(A.B) when B is contained in output[0]?