How to access my module global vars ?

K

Kepes Krisztian

Hi !

How to access my module global vars ?

Some applications I want to declare global vars (constants).

But in the module I cannot access them:


DEF_X=120

class N:
def DO(y):
return(DEF_X*y)

It creates error.


But if I create an aux. unit in other file:

===file1===

DEF_X=120

===main===
from file1 import *;

class N:
def DO(y):
return(DEF_X*y)

it works good.

So: how I can create local (unit level) constants ?

Thanx:
KK
 

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,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top