剑指offer python版 赋值运算符
Posted findtruth123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer python版 赋值运算符相关的知识,希望对你有一定的参考价值。
class aa(object): def __init__(self,x): self.val=x def __add__(self,other): x=self.val-other.val return x a=aa(10) b=aa(2) c=b+a print(c)
以上是关于剑指offer python版 赋值运算符的主要内容,如果未能解决你的问题,请参考以下文章