Создайте экземпляры класса в петле

objs = [MyClass() for i in range(10)]
for obj in objs:
    other_object.add(obj)

objs[0].do_sth()
Real Raccoon