Maybe to you. Not to me. And not, I suspect, to most of the programmers in this discussion.
> Python doesn't have this.
Sure it does:
class NerfedInteger(object): def __init__(self, i): self.__i = i def __repr__(self): return "<NerfedInteger({})>".format(self.__i) def __str__(self): return str(self.__i) @property def i(self): return self.__i
Maybe to you. Not to me. And not, I suspect, to most of the programmers in this discussion.
> Python doesn't have this.
Sure it does: