Devon
|
You are using V2.7/Ika, correct? Most likely you've forgotten to import the namespace into the current module.
Unlike V2.5/k+j, a global var defined in one PY file is _not_ considered to exist in any other unless you explicitly make it so. You need to type
from "name" import *
where "name" is the name of the PY file that contains the global you are trying to use, minus the quotes and the extention. (So party.py would be
from party import *
)
You need to add such a line to every PY file that you want to access that global in, even if you are already importing a module that itself imports the one you want.
As for age, I believe the field runs from 15 to late 30s. Average mid 20s I would guess.
-Devon
---
Square's making money.
We're making art.
Posted on 2001-11-02 03:29:57
|