Why doesn't the following work in Python?
def make_class(a):
class A(object):
a=a
return A
|
|
|
|
|
|
|
Let's use a simpler example for the same problem:
This fails because assignments in python, without an accompanying This means that you can't use the same name for a global and local variable and use them both. You can use the workaround from Aaron Digulia's answer, or use a different name:
|
||
|
|
|
|
works just fine:
btw, |
||||||||
|
|
|
Both appear to work fine (in Python 2.5, at least):
|
||
|
|
|
Try
The error you get ( This becomes more clean with functions:
Obviously, the first print should print 2, not 1, so the parameter If you try to call Your case looks more like this:
While printing
To solve your problem, you would need to tell Python "make the parameter Since you can't make it visible, there is no See here for an explanation of the scope of a name in Python. |
||||||
|