locals |
| locals() |
Returns a mapping object representing the local symbol table (built-in). |
| REMARKS |
| * No prefix required - Core * Update and return a dictionary representing the current local symbol table. Free variables are returned by locals() when it is called in function blocks, but not in class blocks. Note that at the module level, locals() and globals() are the same dictionary. * The contents of this dictionary should not be modified; changes may not affect the values of local and free variables used by the interpreter. * For the Official documentation refer to python.org |
??
© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited Top