为什么比较字典和数字并不总是假的?

时间:2018-01-24 21:41:45

标签: python dictionary numbers comparison

为什么dict比任何数字都要大!!!!

In [41]: {} > 11
Out[41]: True

In [42]: {} == 11
Out[42]: False

In [43]: {} < 11
Out[43]: False

我该怎么做才能让它发挥作用?

0 个答案:

没有答案