>>> class Number(object): ... def __init__(self,value): ... self.value = value ... def __add__(self,other): ... return self.value+other.value ... >>> Number(3)+Number(4) 7
python 内建函数专题
原文:https://www.cnblogs.com/Frank99/p/9259676.html