Declaring variables from a list

Inyeol Lee inyeol.lee at siimage.com
Fri Apr 8 18:07:06 EDT 2005


On Sat, Apr 09, 2005 at 03:15:01AM +0530, Sidharth Kuruvila wrote:
> Python has a builtin function called locals which returns the local
> context as a dictionary
> 
> >>> locals = locals()
> >>> locals["a"] = 5
> >>> a
> 5
> >>> locals["a"] = "changed"
> >>> a
> 'changed'

>From Python lib reference:

"""
locals()
    ...
    Warning: The contents of this dictionary should not be
    modified; changes may not affect the values of local variables used
    by the interpreter. 
"""



More information about the Python-list mailing list