>>> bar Traceback (most recent call last): File "", line 1, in NameError: name 'bar' is not defined >>> class Foo: ... global bar ... bar = 42 ... >>> bar 42 >>> Foo.bar Traceback (most recent call last): File "", line 1, in AttributeError: type object 'Foo' has no attribute 'bar'