Class Python Tutorial

class Foo(object):
     x = 1.5
foo = Foo()
print foo.x
foo.x = 1.7          
print foo.x            
print Foo.x