Newcomer question wrt variable scope/namespaces

2006-01-13 Thread Florian Daniel Otel
Hello all, As the subject says, I am a newcomer to Python and I have a newcomer question wrt namespaces and variable scope. Obviously, I might be missing smth obvious, so TIA for the patience and/or pointers to relevant resources My problem: I just discovered (by mistake) that attempting to assig

Re: Newcomer question wrt variable scope/namespaces

2006-01-13 Thread Florian Daniel Otel
Gary, First of all, many thanks for the reply. Do I understand it correctly that actually the rule has to be refined as pertaining to the (so called) "immutable" types (like e.g. integers, tuples/strings) whereas lists and dictionaries are "mutable" types and the said scoping rule does not appl

Re: Newcomer question wrt variable scope/namespaces

2006-01-18 Thread Florian Daniel Otel
Mike, Gary, Magnus First of all, thanks to you all for the clarifications. On 1/14/06, Mike Meyer <[EMAIL PROTECTED]> wrote: > Python variables are just names. They refer to (are "bound" to) > objects. An assignment statement doesn't change a value. It rebinds > the variable (or lvalue) to the va