______________ returns a dictionary of the module namespace.
________________ returns a dictionary of the current namespace.
globals()
locals()
locals()
globals()
Correct Answer: C
Explanation: The function globals() returns a dictionary of the module namespace, whereas the function locals() returns a dictionary of the current namespace.