stupid simple scope issue

J

JohnD

After 5 year of no Python programming I decided that I needed to brush
up my skills. Started writing on a reasonably complicated problem.
Unfortunately my basic Python skill are gone.

I present the bare-bore problem. This code does not produce the expected
result: can anyone tell me why? As you will guess, I want the first
three lines of output identical to the second three lines...

Can anyone point out the solution? Thanks!

#~/usr/bin/python
import random
class boys:
state={}
class boy:
state={
'name':'',
'age':''
}
names=['a','b','c']

def add_names():
global boys
for n in names:
boy.state['name']=n
boy.state['age']=random.randint(1, 1000)
boys.state[n]=boy.state
print boy.state['name'], boy.state['age']

add_names()

for n in boys.state:
boy.state=boys.state[n]
print boy.state['name'], boy.state['age']
 
C

Chris Angelico

#~/usr/bin/python

If this is meant to be a Unix-style shebang, the second character
needs to be ! not ~. This has no effect on Python though.
import random
class boys:
state={}
class boy:
state={
'name':'',
'age':''
}

At no time do you actually instantiate any objects from these types.
In fact, you may as well drop the class blocks and the ".state" usage
and simply use:

boys = {}
boy = {'name':'', 'age':''}

as this will achieve the exact same thing.
def add_names():
global boys

The global declaration is needed only if you assign to the name, eg
boys = said:
for n in names:
boy.state['name']=n
boy.state['age']=random.randint(1, 1000)
boys.state[n]=boy.state
print boy.state['name'], boy.state['age']

Each time you do this, you're modifying the same 'boy' mapping, then
putting another reference to it in 'boys'. I think possibly what you
want here is to construct a new boy() instance for each one.
add_names()

for n in boys.state:
boy.state=boys.state[n]
print boy.state['name'], boy.state['age']

I'd look at doing it more like this:

class boy:
def __init__(self,name,age):
self.name=name; self.age=age
boys = {}

def add_name(n):
b = boy(n,random.randint(1, 1000))
boys[n] = b
print b.name, b.age

for n in 'a','b','c':
add_name(n)

for n,b in boys.items():
print b.name, b.age


Or possibly even dispense with the boy class altogether and simply use
a dictionary - or simply map a name to an age, since (as you can see
in the final loop) it's easy enough to iterate over the dictionary.
(Note that the code above is untested and probably has an egregious
bug in it somewhere.)

ChrisA
 
J

JohnD

[...]
Thank you very much. The dust is slowly starting to move.
The code posted is nothing like the real thing, but I tried
to capture the essence.

From your commants I think I see my mistake.

Thank you very much for your reply!
 
C

Chris Angelico

[...]
Thank you very much. The dust is slowly starting to move.
The code posted is nothing like the real thing, but I tried
to capture the essence.

From your commants I think I see my mistake.

Thank you very much for your reply!

No probs!

Python does have a slightly odd (compared to other languages)
interpretation of "variable assignments" (name bindings, really)
inside a class block. Trips up a lot of people.

ChrisA
 
J

JohnD

On 2013-08-04, Chris Angelico <[email protected]> wrote:
[...]

Python does have a slightly odd (compared to other languages)
interpretation of "variable assignments" (name bindings, really)
inside a class block. Trips up a lot of people.

Changed the code: >10% smaller, more elegant, and it seems to work!
If it really works I am close to half-way...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top