I have a python file with imports as this:
from a import z
from b import y
from c import x
# ....
I have a string representation of each of this modules, but I want to get the string representation from all the imported modules without having to list all of them. In short I want to do something like for name in something_to_repr_all_imported_modules ....