python 魔法方法加减乘除_【Python042--魔法方法:算术运算】
一、算术魔法方法的举例1、加法(__add__)的算术运算调用减法(__sub__)的算术运算,减法(__sub__)的算术运算调用加法(__add__)的算术运算class New_Init(int):def __add__(self,other):return int.__sub__(self,other)def __sub__(self,other):return int.__add__(s...