class Hoge(object):
    def __init__(self, a={}):
        self.a = a
 
x = Hoge()
y = Hoge()
x.a[0] = 1
y.a[1] = 2
print y.a