Class Python Tutorial

class C(object):
     foo = 100
print C.foo
C.foo = C.foo + 1
print C.foo