'tuple' object has no attribute 'ordered_statistics'
时间: 2023-10-17 21:06:00 浏览: 110
json_tuple一定比 get_json_object更高效吗?(源码剖析).docx
这个错误通常是因为你在使用 Python 中的 `collections.Counter` 对象时,尝试使用了 `ordered_statistics` 属性。但是 `ordered_statistics` 属性只有在使用 Python 中的 `collections.Counter.most_common` 方法时才会存在,而且只有在 Python 3.6 及以上版本中才支持。
要解决这个问题,你可以检查你的代码是否使用了 `ordered_statistics` 属性,并确保你的代码在 Python 3.6 及以上版本中运行。如果你需要在 Python 3.5 或更低版本中使用 `ordered_statistics`,你可以使用 Python 中的 `collections.OrderedCounter` 类来代替 `collections.Counter`,该类支持 `ordered_statistics` 属性。
阅读全文