bisect and lists of user defined objects (python 3)
在python 3之前,我使用bisect将用户定义的对象插入到列表中。 bisect对此感到满意,因为我的用户定义对象有一个def
1 | (integer, user-defined object). |
但是,如果我有一个我的元组列表,并尝试...
1 | i = bisect_left([list_of_tuples], (integer, user-defined object)) |
然后我收到错误"builtins.TypeError:unorderable types ..."
那么,(在python 3中)我如何使用bisect作为完全不具有自然排序顺序的项目列表?
您需要添加