标签: python dictionary numbers comparison
为什么dict比任何数字都要大!!!!
In [41]: {} > 11 Out[41]: True In [42]: {} == 11 Out[42]: False In [43]: {} < 11 Out[43]: False
我该怎么做才能让它发挥作用?