使用namedtuples时,对象似乎有一个默认的“值”,允许用户将两个命名元组与< >
运算符进行比较。任何人都可以解释这个值来自何处或为什么此代码返回True
?是否有一种聪明的方法让>
运算符在不使用Person.age
的情况下比较年龄?
>>>from collections import namedtuple
>>>Person = namedtuple('Person', ['age', 'name'])
>>>bob = Person('20', 'bob')
>>>jim = Person('20', 'jim')
>>>bob < jim
True
答案 0 :(得分:1)
你可以这样做:
from collections import namedtuple
class Person(namedtuple('Person', ['age', 'name'])):
def __gt__(self, other):
return self.age > other.age
def __lt__(self, other):
return self.age < other.age
def __eq__(self, other):
return self.age == other.age
然而,Person
小于或大于年龄真的有意义吗?为什么不明确核对Person.age
?
答案 1 :(得分:0)
似乎它正在使用字符串比较,只是连接值:
>>> Person = namedtuple('Person', ['age', 'name'])
>>> bob = Person('20', 'bob')
>>> jim = Person('20', 'jim')
>>> bob < jim
True
>>> bob = Person('20', 'jin')
>>> bob < jim
False
>>> bob = Person('20', 'jim')
>>> bob < jim
False
>>> bob = Person('21', 'jim')
>>> bob < jim
False
>>> bob = Person('19', 'jim')
>>> bob < jim
True