[Python-Dev] Comparisions for collections.Counters (original) (raw)
Michael Selik mike at selik.org
Wed Sep 5 12:12:37 EDT 2018
- Previous message (by thread): [Python-Dev] Comparisions for collections.Counters
- Next message (by thread): [Python-Dev] Comparisions for collections.Counters
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wed, Sep 5, 2018 at 3:13 AM Evpok Padding <evpok.padding at gmail.com> wrote:
According to the [doc][1],
collections.Counter
convenience intersection and union functions are meant to help it represent multisets. However, it currently lacks comparisons, which would make sense and seems straightforward to implement.
x = Counter(a=1, b=2) y = Counter(a=2, b=1) x > y ? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20180905/f91d3a5d/attachment.html>
- Previous message (by thread): [Python-Dev] Comparisions for collections.Counters
- Next message (by thread): [Python-Dev] Comparisions for collections.Counters
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]