python 'Series' object has no attribute 'sorted'
时间: 2023-08-29 11:09:32 浏览: 151
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误是因为在Python的'list'对象上使用了'sorted'方法,而'list'对象没有'sorted'属性。 请注意,'sorted'方法是在内置的'list'类上定义的,而不是在'list'对象上定义的。要解决这个问题,你可以使用内置的'sorted'函数来对列表进行排序。另外,从Python的角度来看,元组被定义为具有数据类型'tuple'的对象。 所以,如果你想对元组进行排序,你可以将其转换为列表,然后使用'sorted'函数进行排序。对于'Series'对象,它没有'sort'属性,但是有'sort_values'方法。 所以,如果你想对'Series'对象进行排序,你应该使用'sort_values'方法而不是'sort'方法。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [python错误:AttributeError: 'list' object has no attribute 'sorted'](https://blog.csdn.net/Haruno_Sakura/article/details/82591083)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [Python小知识](https://blog.csdn.net/DANCE_ZHOU/article/details/123437569)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [【Python】报错 ‘Series‘ object has no attribute ‘sort‘时的解决办法](https://blog.csdn.net/weixin_47193753/article/details/122115152)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
阅读全文