<div dir="ltr">As Counter objects effectively behave like multi-sets, it seems reasonable to overload <, <=, >, >= as for set objects to check whether a Counter is a sub/super-set of another Counter:<div><br></div><div>c < d  <===>  all(c[k] < d[k] for k in c)</div><div><br></div><div>Thoughts?</div><div><br></div><div>Antony</div></div>