I have a small question: If I run this:
print(list(globals()))
this is the output:
['__package__', '__loader__', '__doc__', , '__file__', 'b', '__name__', '__builtins__', 'a']
I want to try a method with all of these elements, especially a
and b
.
But this would be like:
'a'.run()
so this doesn´t work at all.
I need something like:
a.run()