global-namespace

python: NameError:global name '…‘ is not defined

python: NameError:global name '…‘ is not defined Question: in my code, I have: class A: def a(): …… def b(): a() …… b() Then the compiler will say “NameError: global name a() is not defined.” If I pull all the stuffs out of the class A, it would be no problem, but how can I …

Total answers: 1