Which data type do the function globals() and locals() returns
locals(): returns a dictionary representing the current local symbol table globals(): returns a dictionary representing the current global symbol table More info - https://docs.python.org/3/library/functions.html#globals
Comment here: