How can i access dynamic dataframe that are created using global() function?

Would need your kind help here.
Thanks.

Is this what are you asking for?

global_variable = 'hello'
print(globals()['global_variable'])    # prints hello

More explanation:

  1. You cannot name a function global() in Python because global is a keyword.
  2. Using the function globals() you can access the variables in the current module scope (also called global variables). The function returns a dictionary. Keys of the dictionary are the variable names.

I do not know what did you mean by “dynamic dataframe”. Maybe a scope in which variables exist (like the global scope)?