(original) (raw)

On Wed, Sep 5, 2018 at 3:13 AM Evpok Padding <evpok.padding@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
?