写一个类,并让它尽可能多的支持操作符?【面试题详解】

今天爱分享给大家带来写一个类,并让它尽可能多的支持操作符?【面试题详解】,希望能够帮助到大家。


class Array:
    __list = []

    def __init__(self):
        print "constructor"

    def __del__(self):
        print "destruct"

    def __str__(self):
        return "this self-defined array class"

    def __getitem__(self,key):
        return self.__list[key]

    def __len__(self):
        return len(self.__list)

    def Add(self,value):
        self.__list.append(value)

    def Remove(self,index):
        del self.__list[index]

    def DisplayItems(self):
        print "show all items---"
        for item in self.__list:
            print item


人已赞赏
Python

逻辑回归的优缺点有哪些【面试题详解】

2020-12-25 11:16:35

Python

逻辑回归为什么使用极大似然函数作为损失函数,而不用平方损失函数【面试题详解】

2020-12-25 11:17:48

'); })();