python如何将自定义对象作为字典键值【面试题详解】

今天爱分享给大家带来python如何将自定义对象作为字典键值【面试题详解】,希望能够帮助到大家。


class MyThing:
    def __init__(self,name,location,length):
        self.name = name
        self.location = location
        self.length = length

    def __hash__(self):
        return hash((self.name, self.location))

    def __eq__(self, other):
        return (self.name, self.location) == (other.name, other.location)

原文链接:https://blog.itblood.com/4462.html,转载请注明出处。
0
我的新生活:重置0.96 [神作RPG/AI汉化/动态]
我的新生活:重置0.96 [神作RPG/AI汉化/动态]
1分钟前 有人购买 去瞅瞅看

站点公告

显示验证码
没有账号?注册  忘记密码?