Por que você não pode adicionar atributos ao objeto em python? [duplicado

Esta pergunta já tem uma resposta aqui:

Não é possível definir atributos da classe de objeto respostas

(Escrito em shell Python)

>>> o = object()
>>> o.test = 1

Traceback (most recent call last):
  File "<pyshell#45>", line 1, in <module>
    o.test = 1
AttributeError: 'object' object has no attribute 'test'
>>> class test1:
    pass

>>> t = test1()
>>> t.test

Traceback (most recent call last):
  File "<pyshell#50>", line 1, in <module>
    t.test
AttributeError: test1 instance has no attribute 'test'
>>> t.test = 1
>>> t.test
1
>>> class test2(object):
    pass

>>> t = test2()
>>> t.test = 1
>>> t.test
1
>>> 

Por que o objeto não permite adicionar atributos a el

questionAnswers(2)

yourAnswerToTheQuestion