I usually use a class to access to global variables. So, which would be the correct way to set them --since the following classes--: -------------------- class Foo: var = 'lala' class Bar: def __init__(self): self.var = 'lele' -------------------- Or is it the same?