class X:
    x = 4

x = X()
stuff = x.x
print stuff
things = X.x
print things
